A. LilyPond grammar

This appendix contains a description of the LilyPond grammar, as output from the parser.

Grammar

    1 start_symbol: lilypond

    3 start_symbol: "#{" $ embedded_lilypond

    4 lilypond: %empty
    5         | lilypond toplevel_expression
    6         | lilypond assignment
    7         | lilypond error
    8         | lilypond "\version-error"

    9 toplevel_expression: header_block
   10                    | book_block
   11                    | bookpart_block
   12                    | BOOK_IDENTIFIER
   13                    | score_block
   14                    | composite_music
   15                    | full_markup
   16                    | full_markup_list
   17                    | SCM_TOKEN
   18                    | embedded_scm_active
   19                    | output_def

   20 lookup: LOOKUP_IDENTIFIER
   21       | LOOKUP_IDENTIFIER '.' symbol_list_rev

   22 embedded_scm_bare: SCM_TOKEN
   23                  | SCM_IDENTIFIER

   24 embedded_scm_active: SCM_IDENTIFIER
   25                    | scm_function_call
   26                    | lookup

   27 embedded_scm_bare_arg: SCM_ARG
   28                      | SCM_TOKEN
   29                      | FRACTION
   30                      | partial_markup
   31                      | full_markup_list
   32                      | context_modification
   33                      | header_block
   34                      | score_block
   35                      | context_def_spec_block
   36                      | book_block
   37                      | bookpart_block
   38                      | output_def
   39                      | lookup

   40 embedded_scm: embedded_scm_bare
   41             | scm_function_call
   42             | lookup

   43 embedded_scm_arg: embedded_scm_bare_arg
   44                 | scm_function_call
   45                 | music_assign

   46 scm_function_call: SCM_FUNCTION function_arglist

   47 embedded_lilypond_number: '-' embedded_lilypond_number
   48                         | bare_number_common
   49                         | UNSIGNED NUMBER_IDENTIFIER

   50 embedded_lilypond: %empty
   51                  | identifier_init_nonumber
   52                  | embedded_lilypond_number
   53                  | post_event post_events
   54                  | multiplied_duration
   55                  | music_embedded music_embedded music_list
   56                  | error
   57                  | "\version-error" embedded_lilypond

   58 lilypond_header_body: %empty
   59                     | lilypond_header_body assignment
   60                     | lilypond_header_body SCM_TOKEN
   61                     | lilypond_header_body embedded_scm_active

   62 lilypond_header: "\header" '{' lilypond_header_body '}'

   64 header_block: $ lilypond_header

   65 assignment_id: STRING
   66              | SYMBOL

   67 assignment: assignment_id '=' identifier_init
   68           | assignment_id '.' property_path '=' identifier_init
   69           | assignment_id ',' property_path '=' identifier_init
   70           | markup_mode_word '=' identifier_init

   71 identifier_init: identifier_init_nonumber
   72                | number_expression
   73                | symbol_list_part_bare '.' property_path
   74                | symbol_list_part_bare ',' property_path
   75                | post_event_nofinger post_events

   76 identifier_init_nonumber: header_block
   77                         | score_block
   78                         | book_block
   79                         | bookpart_block
   80                         | output_def
   81                         | context_def_spec_block
   82                         | music_assign
   83                         | pitch_or_music
   84                         | FRACTION
   85                         | string
   86                         | embedded_scm
   87                         | partial_markup
   88                         | full_markup_list
   89                         | context_modification
   90                         | partial_function "\etc"

   91 partial_function_scriptable: MUSIC_FUNCTION function_arglist_partial
   92                            | EVENT_FUNCTION function_arglist_partial
   93                            | SCM_FUNCTION function_arglist_partial
   94                            | MUSIC_FUNCTION 
                                     "scheme?" 
                                     function_arglist_optional 
                                     partial_function 
   95                            | EVENT_FUNCTION 
                                     "scheme?" 
                                     function_arglist_optional 
                                     partial_function 
   96                            | SCM_FUNCTION 
                                     "scheme?" 
                                     function_arglist_optional 
                                     partial_function 
   97                            | MUSIC_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
   98                            | EVENT_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
   99                            | SCM_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 

  100 partial_function: partial_function_scriptable
  101                 | "\override" grob_prop_path '='
  102                 | "\set" context_prop_spec '='
  103                 | "\override" grob_prop_path '=' partial_function
  104                 | "\set" context_prop_spec '=' partial_function
  105                 | script_dir markup_mode markup_partial_function
  106                 | script_dir partial_function_scriptable
  107                 | script_dir

  108 context_def_spec_block: "\context" '{' context_def_spec_body '}'

  109 context_mod_arg: embedded_scm

  111 context_mod_arg: $ composite_music

  112 context_def_spec_body: %empty
  113                      | context_def_spec_body context_mod
  114                      | context_def_spec_body context_modification
  115                      | context_def_spec_body context_mod_arg

  116 book_block: "\book" '{' book_body '}'

  117 book_body: %empty
  118          | BOOK_IDENTIFIER
  119          | book_body paper_block
  120          | book_body bookpart_block
  121          | book_body score_block
  122          | book_body composite_music
  123          | book_body full_markup
  124          | book_body full_markup_list
  125          | book_body SCM_TOKEN
  126          | book_body embedded_scm_active

  128 book_body: book_body $ lilypond_header
  129          | book_body error

  130 bookpart_block: "\bookpart" '{' bookpart_body '}'

  131 bookpart_body: %empty
  132              | BOOK_IDENTIFIER
  133              | bookpart_body paper_block
  134              | bookpart_body score_block
  135              | bookpart_body composite_music
  136              | bookpart_body full_markup
  137              | bookpart_body full_markup_list
  138              | bookpart_body SCM_TOKEN
  139              | bookpart_body embedded_scm_active

  141 bookpart_body: bookpart_body $ lilypond_header
  142              | bookpart_body error

  143 score_block: "\score" '{' score_body '}'

  144 score_body: score_items
  145           | score_body error

  146 score_item: embedded_scm
  147           | music
  148           | output_def

  149 score_items: %empty
  150            | score_items score_item

  152 score_items: score_items $ lilypond_header

  153 paper_block: output_def

  154 output_def: output_def_body '}'

  155 output_def_head: "\paper"
  156                | "\midi"
  157                | "\layout"

  158 output_def_head_with_mode_switch: output_def_head

  159 music_or_context_def: music_assign
  160                     | context_def_spec_block

  161 output_def_body: output_def_head_with_mode_switch '{'
  162                | output_def_body assignment
  163                | output_def_body embedded_scm_active
  164                | output_def_body SCM_TOKEN

  166 output_def_body: output_def_body $ music_or_context_def
  167                | output_def_body error

  168 tempo_event: "\tempo" steno_duration '=' tempo_range
  169            | "\tempo" text steno_duration '=' tempo_range
  170            | "\tempo" text

  171 music_list: %empty
  172           | music_list music_embedded
  173           | music_list error

  174 braced_music_list: '{' music_list '}'

  175 music: music_assign
  176      | lyric_element_music
  177      | pitch_as_music

  178 pitch_as_music: pitch_or_music

  179 music_embedded: music
  180               | music_embedded_backup
  181               | music_embedded_backup 
                        "(backed-up?)" 
                        lyric_element_music 
  182               | multiplied_duration post_events

  183 music_embedded_backup: embedded_scm

  184 music_assign: simple_music
  185             | composite_music

  186 repeated_music: "\repeat" simple_string unsigned_number music
  187               | "\repeat" 
                        simple_string 
                        unsigned_number 
                        music 
                        "\alternative" 
                        braced_music_list 

  188 sequential_music: "\sequential" braced_music_list
  189                 | braced_music_list

  190 simultaneous_music: "\simultaneous" braced_music_list
  191                   | "<<" music_list ">>"

  192 simple_music: event_chord
  193             | music_property_def
  194             | context_change

  196 context_modification: "\with" $ '{' context_mod_list '}'
  197                     | "\with" context_modification_arg

  198 context_modification_arg: embedded_scm
  199                         | MUSIC_IDENTIFIER

  200 optional_context_mods: context_modification_mods_list

  201 context_modification_mods_list: %empty
  202                               | context_modification_mods_list 
                                        context_modification 

  203 context_mod_list: %empty
  204                 | context_mod_list context_mod
  205                 | context_mod_list context_mod_arg

  206 context_prefix: "\context" symbol optional_id optional_context_mods
  207               | "\new" symbol optional_id optional_context_mods

  208 new_lyrics: "\addlyrics" optional_context_mods lyric_mode_music
  209           | new_lyrics 
                    "\addlyrics" 
                    optional_context_mods 
                    lyric_mode_music 

  210 basic_music: music_function_call
  211            | repeated_music
  212            | music_bare
  213            | "\lyricsto" simple_string lyric_mode_music
  214            | "\lyricsto" symbol '=' simple_string lyric_mode_music

  215 contextable_music: basic_music
  216                  | pitch_as_music
  217                  | event_chord

  218 contexted_basic_music: context_prefix contextable_music new_lyrics
  219                      | context_prefix contextable_music
  220                      | context_prefix contexted_basic_music

  221 composite_music: basic_music
  222                | contexted_basic_music
  223                | basic_music new_lyrics

  224 music_bare: mode_changed_music
  225           | MUSIC_IDENTIFIER
  226           | grouped_music_list

  227 grouped_music_list: simultaneous_music
  228                   | sequential_music

  229 symbol_list_arg: SYMBOL_LIST
  230                | SYMBOL_LIST '.' symbol_list_rev
  231                | SYMBOL_LIST ',' symbol_list_rev

  232 symbol_list_rev: symbol_list_part
  233                | symbol_list_rev '.' symbol_list_part
  234                | symbol_list_rev ',' symbol_list_part

  235 symbol_list_part: symbol_list_part_bare
  236                 | embedded_scm_bare

  237 symbol_list_element: STRING
  238                    | UNSIGNED

  239 symbol_list_part_bare: SYMBOL
  240                      | symbol_list_element

  241 function_arglist_nonbackup: function_arglist_common
  242                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
  243                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
  244                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
  245                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  246                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
  247                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    bare_number_common 
  248                           | function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    pitch_or_music 
  249                           | function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    multiplied_duration 
  250                           | function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    reparsed_rhythm 
  251                           | function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    bare_number_common 
  252                           | function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    SCM_ARG 
  253                           | function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    lyric_element_music 
  254                           | function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    symbol_list_arg 

  255 reparsed_rhythm: DURATION_ARG dots multipliers post_events

  256 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
  257                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            pitch 
  258                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
  259                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            STRING 
  260                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SYMBOL 
  261                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            full_markup 
  262                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
  263                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 

  264 function_arglist_backup: function_arglist_common
  265                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 embedded_scm_arg 
  266                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 post_event_nofinger 
  267                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 pitch 
  268                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 steno_tonic_pitch 
  269                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 full_markup 
  270                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 UNSIGNED 
  271                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 REAL 
  272                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 NUMBER_IDENTIFIER 
  273                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 UNSIGNED 
  274                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 REAL 
  275                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  276                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 DURATION_IDENTIFIER 
  277                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 SCM_IDENTIFIER 
  278                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 STRING 
  279                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 SYMBOL 
  280                        | function_arglist_backup 
                                 "(reparsed?)" 
                                 pitch_or_music 
  281                        | function_arglist_backup 
                                 "(reparsed?)" 
                                 bare_number_common 
  282                        | function_arglist_backup 
                                 "(reparsed?)" 
                                 multiplied_duration 
  283                        | function_arglist_backup 
                                 "(reparsed?)" 
                                 reparsed_rhythm 
  284                        | function_arglist_backup 
                                 "(reparsed?)" 
                                 symbol_list_arg 

  285 function_arglist: function_arglist_nonbackup
  286                 | "optional?" 
                          "scheme?" 
                          function_arglist_skip_nonbackup 
                          "\default" 

  287 function_arglist_skip_nonbackup: function_arglist_nonbackup
  288                                | "optional?" 
                                         "scheme?" 
                                         function_arglist_skip_nonbackup 

  289 function_arglist_partial: "scheme?" function_arglist_optional
  290                         | "scheme?" function_arglist_partial_optional
  291                         | "optional?" 
                                  "scheme?" 
                                  function_arglist_nonbackup 
  292                         | "optional?" 
                                  "scheme?" 
                                  function_arglist_partial 

  293 function_arglist_partial_optional: "scheme?" function_arglist_optional
  294                                  | "scheme?" 
                                           function_arglist_partial_optional 
  295                                  | "optional?" 
                                           "scheme?" 
                                           function_arglist_backup 
  296                                  | "optional?" 
                                           "scheme?" 
                                           function_arglist_partial_optional 

  297 function_arglist_common: EXPECT_NO_MORE_ARGS
  298                        | "scheme?" 
                                 function_arglist_optional 
                                 embedded_scm_arg 
  299                        | "scheme?" 
                                 function_arglist_optional 
                                 bare_number_common 
  300                        | "scheme?" 
                                 function_arglist_optional 
                                 post_event_nofinger 
  301                        | "scheme?" 
                                 function_arglist_optional 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  302                        | function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 SCM_ARG 
  303                        | function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 lyric_element_music 
  304                        | function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 pitch_or_music 
  305                        | function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 bare_number_common 
  306                        | function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 multiplied_duration 
  307                        | function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 reparsed_rhythm 
  308                        | function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 symbol_list_arg 

  309 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         SCM_IDENTIFIER 
  310                                | "scheme?" 
                                         function_arglist_optional 
                                         pitch 
  311                                | "scheme?" 
                                         function_arglist_optional 
                                         steno_tonic_pitch 
  312                                | "scheme?" 
                                         function_arglist_optional 
                                         STRING 
  313                                | "scheme?" 
                                         function_arglist_optional 
                                         SYMBOL 
  314                                | "scheme?" 
                                         function_arglist_optional 
                                         full_markup 
  315                                | "scheme?" 
                                         function_arglist_optional 
                                         UNSIGNED 
  316                                | "scheme?" 
                                         function_arglist_optional 
                                         DURATION_IDENTIFIER 
  317                                | "scheme?" 
                                         function_arglist_optional 
                                         '-' 
                                         UNSIGNED 
  318                                | "scheme?" 
                                         function_arglist_optional 
                                         '-' 
                                         REAL 

  319 function_arglist_optional: function_arglist_backup
  320                          | "optional?" 
                                   "scheme?" 
                                   function_arglist_skip_backup 
                                   "\default" 
  321                          | function_arglist_skip_backup "(backed-up?)"

  322 function_arglist_skip_backup: function_arglist_backup
  323                             | "optional?" 
                                      "scheme?" 
                                      function_arglist_skip_backup 

  324 music_function_call: MUSIC_FUNCTION function_arglist

  325 optional_id: %empty
  326            | '=' simple_string

  328 lyric_mode_music: $ grouped_music_list
  329                 | MUSIC_IDENTIFIER

  330 mode_changed_music: mode_changing_head grouped_music_list
  331                   | mode_changing_head_with_context 
                            optional_context_mods 
                            grouped_music_list 

  332 mode_changing_head: "\notemode"
  333                   | "\drummode"
  334                   | "\figuremode"
  335                   | "\chordmode"
  336                   | "\lyricmode"

  337 mode_changing_head_with_context: "\drums"
  338                                | "\figures"
  339                                | "\chords"
  340                                | "\lyrics"

  341 context_change: "\change" symbol '=' simple_string

  342 property_path: symbol_list_rev

  343 property_operation: symbol '=' scalar
  344                   | "\unset" symbol
  345                   | "\override" revert_arg '=' scalar
  346                   | "\revert" revert_arg

  347 revert_arg: revert_arg_backup "(backed-up?)" symbol_list_arg

  348 revert_arg_backup: revert_arg_part

  349 revert_arg_part: symbol_list_part
  350                | revert_arg_backup 
                         "(backed-up?)" 
                         SCM_ARG 
                         '.' 
                         symbol_list_part 
  351                | revert_arg_backup 
                         "(backed-up?)" 
                         SCM_ARG 
                         ',' 
                         symbol_list_part 
  352                | revert_arg_backup 
                         "(backed-up?)" 
                         SCM_ARG 
                         symbol_list_part 

  353 context_def_mod: "\consists"
  354                | "\remove"
  355                | "\accepts"
  356                | "\defaultchild"
  357                | "\denies"
  358                | "\alias"
  359                | "\type"
  360                | "\description"
  361                | "\name"

  362 context_mod: property_operation
  363            | context_def_mod STRING
  364            | context_def_mod SYMBOL
  365            | context_def_mod embedded_scm

  366 grob_prop_spec: symbol_list_rev

  367 grob_prop_path: grob_prop_spec
  368               | grob_prop_spec property_path

  369 context_prop_spec: symbol_list_rev

  370 simple_revert_context: symbol_list_part

  371 music_property_def: "\override" grob_prop_path '=' scalar
  372                   | "\revert" simple_revert_context revert_arg
  373                   | "\set" context_prop_spec '=' scalar
  374                   | "\unset" context_prop_spec

  375 string: STRING
  376       | SYMBOL
  377       | full_markup

  378 text: STRING
  379     | SYMBOL
  380     | full_markup
  381     | embedded_scm_bare

  382 simple_string: STRING
  383              | SYMBOL
  384              | embedded_scm_bare

  385 symbol: STRING
  386       | SYMBOL
  387       | embedded_scm_bare

  388 scalar: embedded_scm_arg
  389       | pitch_or_music
  390       | SCM_IDENTIFIER
  391       | bare_number
  392       | '-' bare_number
  393       | string
  394       | symbol_list_part_bare '.' property_path
  395       | symbol_list_part_bare ',' property_path

  396 event_chord: simple_element post_events
  397            | CHORD_REPETITION optional_notemode_duration post_events
  398            | MULTI_MEASURE_REST optional_notemode_duration post_events
  399            | tempo_event
  400            | note_chord_element

  401 note_chord_element: chord_body optional_notemode_duration post_events

  402 chord_body: "<" chord_body_elements ">"
  403           | FIGURE_OPEN figure_list FIGURE_CLOSE

  404 chord_body_elements: %empty
  405                    | chord_body_elements chord_body_element

  406 chord_body_element: pitch_or_tonic_pitch 
                            exclamations 
                            questions 
                            octave_check 
                            post_events 
  407                   | DRUM_PITCH post_events
  408                   | music_function_chord_body

  409 music_function_chord_body: music_function_call
  410                          | MUSIC_IDENTIFIER
  411                          | embedded_scm

  412 event_function_event: EVENT_FUNCTION function_arglist

  413 post_events: %empty
  414            | post_events post_event

  415 post_event_nofinger: direction_less_event
  416                    | script_dir music_function_call
  417                    | "--"
  418                    | "__"
  419                    | script_dir direction_reqd_event
  420                    | script_dir direction_less_event
  421                    | '^' fingering
  422                    | '_' fingering

  423 post_event: post_event_nofinger
  424           | '-' fingering

  425 string_number_event: E_UNSIGNED

  426 direction_less_event: string_number_event
  427                     | EVENT_IDENTIFIER
  428                     | tremolo_type
  429                     | event_function_event

  430 direction_reqd_event: gen_text_def
  431                     | script_abbreviation

  432 octave_check: %empty
  433             | '=' quotes

  434 quotes: %empty
  435       | sub_quotes
  436       | sup_quotes

  437 sup_quotes: '\''
  438           | sup_quotes '\''

  439 sub_quotes: ','
  440           | sub_quotes ','

  441 steno_pitch: NOTENAME_PITCH quotes

  442 steno_tonic_pitch: TONICNAME_PITCH quotes

  443 pitch: steno_pitch
  444      | PITCH_IDENTIFIER quotes

  445 pitch_or_tonic_pitch: pitch
  446                     | steno_tonic_pitch

  447 gen_text_def: full_markup
  448             | STRING
  449             | SYMBOL
  450             | embedded_scm

  451 fingering: UNSIGNED

  452 script_abbreviation: '^'
  453                    | '+'
  454                    | '-'
  455                    | '!'
  456                    | ">"
  457                    | '.'
  458                    | '_'

  459 script_dir: '_'
  460           | '^'
  461           | '-'

  462 maybe_notemode_duration: %empty
  463                        | multiplied_duration

  464 optional_notemode_duration: maybe_notemode_duration

  465 steno_duration: UNSIGNED dots
  466               | DURATION_IDENTIFIER dots

  467 multiplied_duration: steno_duration multipliers

  468 dots: %empty
  469     | dots '.'

  470 multipliers: %empty
  471            | multipliers '*' UNSIGNED
  472            | multipliers '*' FRACTION

  473 tremolo_type: ':'
  474             | ':' UNSIGNED

  475 bass_number: UNSIGNED
  476            | STRING
  477            | SYMBOL
  478            | full_markup
  479            | embedded_scm_bare

  480 figured_bass_alteration: '-'
  481                        | '+'
  482                        | '!'

  483 bass_figure: "_"
  484            | bass_number
  485            | bass_figure ']'
  486            | bass_figure figured_bass_alteration
  487            | bass_figure figured_bass_modification

  488 figured_bass_modification: "\+"
  489                          | "\!"
  490                          | '/'
  491                          | "\"

  492 br_bass_figure: bass_figure
  493               | '[' bass_figure

  494 figure_list: %empty
  495            | figure_list br_bass_figure

  496 optional_rest: %empty
  497              | "\rest"

  498 pitch_or_music: pitch 
                        exclamations 
                        questions 
                        octave_check 
                        maybe_notemode_duration 
                        optional_rest 
                        post_events 
  499               | new_chord post_events

  500 simple_element: DRUM_PITCH optional_notemode_duration
  501               | RESTNAME optional_notemode_duration

  502 lyric_element: full_markup
  503              | SYMBOL
  504              | STRING
  505              | LYRIC_ELEMENT

  506 lyric_element_music: lyric_element 
                             optional_notemode_duration 
                             post_events 

  507 new_chord: steno_tonic_pitch maybe_notemode_duration
  508          | steno_tonic_pitch 
                   optional_notemode_duration 
                   chord_separator 
                   chord_items 

  509 chord_items: %empty
  510            | chord_items chord_item

  511 chord_separator: ":"
  512                | "^"
  513                | "/" steno_tonic_pitch
  514                | "/+" steno_tonic_pitch

  515 chord_item: chord_separator
  516           | step_numbers
  517           | CHORD_MODIFIER

  518 step_numbers: step_number
  519             | step_numbers '.' step_number

  520 step_number: UNSIGNED
  521            | UNSIGNED '+'
  522            | UNSIGNED "-"

  523 tempo_range: unsigned_number
  524            | unsigned_number '-' unsigned_number

  525 number_expression: number_expression '+' number_term
  526                  | number_expression '-' number_term
  527                  | number_term

  528 number_term: number_factor
  529            | number_factor '*' number_factor
  530            | number_factor '/' number_factor

  531 number_factor: '-' number_factor
  532              | bare_number

  533 bare_number_common: REAL
  534                   | NUMBER_IDENTIFIER
  535                   | REAL NUMBER_IDENTIFIER

  536 bare_number: bare_number_common
  537            | UNSIGNED
  538            | UNSIGNED NUMBER_IDENTIFIER

  539 unsigned_number: UNSIGNED
  540                | NUMBER_IDENTIFIER
  541                | embedded_scm

  542 exclamations: %empty
  543             | exclamations '!'

  544 questions: %empty
  545          | questions '?'

  547 full_markup_list: "\markuplist" $0 markup_list

  548 markup_mode: "\markup"

  549 markup_mode_word: markup_mode markup_word

  550 full_markup: markup_mode markup_top
  551            | markup_mode_word

  552 partial_markup: markup_mode markup_partial_function "\etc"

  553 markup_top: markup_list
  554           | markup_head_1_list simple_markup
  555           | simple_markup_noword

  557 markup_scm: embedded_scm $1 "(backed-up?)"

  558 markup_list: markup_composed_list
  559            | markup_uncomposed_list

  560 markup_uncomposed_list: markup_braced_list
  561                       | markup_command_list
  562                       | markup_scm MARKUPLIST_IDENTIFIER

  564 markup_uncomposed_list: "\score-lines" $2 '{' score_body '}'

  565 markup_composed_list: markup_head_1_list markup_uncomposed_list

  566 markup_braced_list: '{' markup_braced_list_body '}'

  567 markup_braced_list_body: %empty
  568                        | markup_braced_list_body markup
  569                        | markup_braced_list_body markup_list

  570 markup_command_list: MARKUP_LIST_FUNCTION markup_command_list_arguments

  571 markup_command_basic_arguments: "markup-list?" 
                                        markup_command_list_arguments 
                                        markup_list 
  572                               | "scheme?" 
                                        markup_command_list_arguments 
                                        embedded_scm 
  573                               | "scheme?" 
                                        markup_command_list_arguments 
                                        STRING 
  574                               | EXPECT_NO_MORE_ARGS

  575 markup_command_list_arguments: markup_command_basic_arguments
  576                              | "markup?" 
                                       markup_command_list_arguments 
                                       markup 

  577 markup_partial_function: MARKUP_FUNCTION markup_arglist_partial
  578                        | markup_head_1_list 
                                 MARKUP_FUNCTION 
                                 markup_arglist_partial 

  579 markup_arglist_partial: "markup?" markup_arglist_partial
  580                       | "scheme?" markup_arglist_partial
  581                       | "markup?" markup_command_list_arguments
  582                       | "scheme?" markup_command_list_arguments

  583 markup_head_1_item: MARKUP_FUNCTION 
                            "markup?" 
                            markup_command_list_arguments 

  584 markup_head_1_list: markup_head_1_item
  585                   | markup_head_1_list markup_head_1_item

  586 markup_word: STRING
  587            | SYMBOL

  588 simple_markup: markup_word
  589              | simple_markup_noword

  591 simple_markup_noword: "\score" $3 '{' score_body '}'
  592                     | MARKUP_FUNCTION markup_command_basic_arguments
  593                     | markup_scm MARKUP_IDENTIFIER

  594 markup: markup_head_1_list simple_markup
  595       | simple_markup


Terminals, with rules where they appear



    259 260 261 262 263 265 266 267 268 269 270 271 272 273 274 275
    260 261 262 263 265 266 267 268 269 270 271 272 273 274 275 276
    276 277 278 279 286 288 289 290 291 292 293 294 295 296 298 299
    277 278 279 286 288 291 292 295 296 320 323
    300 301 309 310 311 312 313 314 315 316 317 318 320 323 572 573
    302 303 304 305 306 307 308
    373 433
    521 522 537 538 539
    524 526 531
    580 582
    586
"#{" (340) 3
"(backed-up?)" (335) 181 321 347 350 351 352 557
"(reparsed?)" (336) 248 249 250 251 252 253 254 280 281 282 283 284
"-" (320) 522
"--" (268) 417
"/" (321) 513
"/+" (317) 514
":" (319) 511
"<" (322) 402
"<<" (324) 191
">" (323) 402 456
">>" (325) 191
"\!" (327) 489
"\" (326) 491
"\+" (328) 488
"\accepts" (273) 355
"\addlyrics" (262) 208 209
"\alias" (274) 358
"\alternative" (260) 187
"\book" (275) 116
"\bookpart" (276) 130
"\change" (277) 341
"\chordmode" (278) 335
"\chords" (279) 339
"\consists" (280) 353
"\context" (281) 108 206
"\default" (282) 286 320
"\defaultchild" (283) 356
"\denies" (284) 357
"\description" (285) 360
"\drummode" (286) 333
"\drums" (287) 337
"\etc" (288) 90 552
"\figuremode" (289) 334
"\figures" (290) 338
"\header" (291) 62
"\layout" (293) 157
"\lyricmode" (294) 336
"\lyrics" (295) 340
"\lyricsto" (296) 213 214
"\markup" (297) 548
"\markuplist" (298) 547
"\midi" (299) 156
"\name" (300) 361
"\new" (316) 207
"\notemode" (301) 332
"\override" (302) 101 103 345 371
"\paper" (303) 155
"\remove" (304) 354
"\repeat" (259) 186 187
"\rest" (305) 497
"\revert" (306) 346 372
"\score" (307) 143 591
"\score-lines" (308) 564
"\sequential" (309) 188
"\set" (310) 102 104 373
"\simultaneous" (311) 190
"\tempo" (312) 168 169 170
"\type" (313) 359
"\unset" (314) 344 374
"\version-error" (292) 8 57
"\with" (315) 196 197
"^" (318) 512
"_" (331) 483
"__" (269) 418
"end of input" (0) 0
"markup-list?" (337) 571
"markup?" (333) 576 579 581 583
"optional?" (338) 97 98 99 242 243 244 245 246 247 256 257 258 259
"scheme?" (334) 94 95 96 97 98 99 242 243 244 245 246 247 256 257 258
'!' (33) 455 482 543
'*' (42) 471 472 529
'+' (43) 453 481 521 525
',' (44) 69 74 231 234 351 395 439 440
'-' (45) 47 243 244 245 273 274 275 301 317 318 392 424 454 461 480
'.' (46) 21 68 73 230 233 350 394 457 469 519
'/' (47) 490 530
':' (58) 473 474
'=' (61) 67 68 69 70 101 102 103 104 168 169 214 326 341 343 345 371
'?' (63) 545
'[' (91) 493
'\'' (39) 437 438
']' (93) 485
'^' (94) 421 452 460
'_' (95) 422 458 459
'{' (123) 62 108 116 130 143 161 174 196 564 566 591
'}' (125) 62 108 116 130 143 154 174 196 564 566 591
BOOK_IDENTIFIER (341) 12 118 132
CHORD_MODIFIER (342) 517
CHORD_REPETITION (343) 397
COMPOSITE (261)
DRUM_PITCH (344) 407 500
DURATION_ARG (345) 255
DURATION_IDENTIFIER (270) 263 276 316 466
E_UNSIGNED (265) 425
error (256) 7 56 129 142 145 167 173
EVENT_FUNCTION (267) 92 95 98 412
EVENT_IDENTIFIER (266) 427
EXPECT_NO_MORE_ARGS (339) 297 574
FIGURE_CLOSE (329) 403
FIGURE_OPEN (330) 403
FRACTION (346) 29 84 472
LOOKUP_IDENTIFIER (347) 20 21
LYRIC_ELEMENT (348) 505
MARKUP_FUNCTION (349) 577 578 583 592
MARKUP_IDENTIFIER (351) 593
MARKUP_LIST_FUNCTION (350) 570
MARKUPLIST_IDENTIFIER (352) 562
MULTI_MEASURE_REST (332) 398
MUSIC_FUNCTION (353) 91 94 97 324
MUSIC_IDENTIFIER (354) 199 225 329 410
NOTENAME_PITCH (355) 441
NUMBER_IDENTIFIER (271) 49 245 272 275 301 534 535 538 540
PITCH_IDENTIFIER (356) 444
PREC_BOT (258)
PREC_TOP (272)
REAL (264) 244 271 274 318 533 535
RESTNAME (357) 501
SCM_ARG (358) 27 252 302 350 351 352
SCM_FUNCTION (359) 46 93 96 99
SCM_IDENTIFIER (360) 23 24 256 277 309 390
SCM_TOKEN (361) 17 22 28 60 125 138 164
STRING (362) 65 237 259 278 312 363 375 378 382 385 448 476 504 573
SYMBOL (365) 66 239 260 279 313 364 376 379 383 386 449 477 503 587
SYMBOL_LIST (363) 229 230 231
TONICNAME_PITCH (364) 442
UNARY_MINUS (366)
UNSIGNED (263) 49 238 243 262 270 273 315 317 451 465 471 474 475 520

Nonterminals, with rules where they appear


















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































    "#{"  shift, and go to state 1

    "(backed-up?)"  shift, and go to state 320

    "(backed-up?)"  shift, and go to state 573

    "(backed-up?)"  shift, and go to state 620

    "(backed-up?)"  shift, and go to state 667

    "(reparsed?)"  shift, and go to state 383

    "(reparsed?)"  shift, and go to state 384

    "(reparsed?)"  shift, and go to state 544

    "-"  shift, and go to state 848
    '+'  shift, and go to state 849

    "\addlyrics"  shift, and go to state 220

    "\addlyrics"  shift, and go to state 220

    "\addlyrics"  shift, and go to state 412

    "\addlyrics"  shift, and go to state 412

    "\alternative"  shift, and go to state 707

    "\default"  shift, and go to state 736

    "\default"  shift, and go to state 819

    "\etc"  shift, and go to state 310

    "\etc"  shift, and go to state 506

    "\header"  reduce using rule 127 ($@4)

    "\header"  reduce using rule 140 ($@5)

    "\header"  shift, and go to state 200

    "\header"  shift, and go to state 200

    "\header"  shift, and go to state 200

    "\header"  shift, and go to state 200

    "\rest"  shift, and go to state 851

    "\with"  shift, and go to state 96

    "end of input"  reduce using rule 55 (embedded_lilypond)

    "end of input"  shift, and go to state 5

    "markup?"  shift, and go to state 417

    "scheme?"  shift, and go to state 382

    "scheme?"  shift, and go to state 440

    "scheme?"  shift, and go to state 479

    "scheme?"  shift, and go to state 483

    "scheme?"  shift, and go to state 543

    "scheme?"  shift, and go to state 623

    "scheme?"  shift, and go to state 723

    "scheme?"  shift, and go to state 766

    "scheme?"  shift, and go to state 805

    "scheme?"  shift, and go to state 829

    "scheme?"  shift, and go to state 834

    "scheme?"  shift, and go to state 865

    "scheme?"  shift, and go to state 867

    "scheme?"  shift, and go to state 877

    $@1  go to state 4

    $@10  go to state 183

    $@11  go to state 426

    $@12  go to state 416

    $@13  go to state 415

    $default  accept

    $default  reduce using rule 10 (toplevel_expression)

    $default  reduce using rule 100 (partial_function)

    $default  reduce using rule 101 (partial_function)

    $default  reduce using rule 102 (partial_function)

    $default  reduce using rule 103 (partial_function)

    $default  reduce using rule 104 (partial_function)

    $default  reduce using rule 105 (partial_function)

    $default  reduce using rule 106 (partial_function)

    $default  reduce using rule 107 (partial_function)

    $default  reduce using rule 107 (partial_function)

    $default  reduce using rule 108 (context_def_spec_block)

    $default  reduce using rule 109 (context_mod_arg)

    $default  reduce using rule 11 (toplevel_expression)

    $default  reduce using rule 110 ($@3)

    $default  reduce using rule 110 ($@3)

    $default  reduce using rule 111 (context_mod_arg)

    $default  reduce using rule 112 (context_def_spec_body)

    $default  reduce using rule 113 (context_def_spec_body)

    $default  reduce using rule 114 (context_def_spec_body)

    $default  reduce using rule 115 (context_def_spec_body)

    $default  reduce using rule 116 (book_block)

    $default  reduce using rule 117 (book_body)

    $default  reduce using rule 118 (book_body)

    $default  reduce using rule 119 (book_body)

    $default  reduce using rule 12 (toplevel_expression)

    $default  reduce using rule 120 (book_body)

    $default  reduce using rule 121 (book_body)

    $default  reduce using rule 122 (book_body)

    $default  reduce using rule 123 (book_body)

    $default  reduce using rule 124 (book_body)

    $default  reduce using rule 125 (book_body)

    $default  reduce using rule 126 (book_body)

    $default  reduce using rule 128 (book_body)

    $default  reduce using rule 129 (book_body)

    $default  reduce using rule 13 (toplevel_expression)

    $default  reduce using rule 130 (bookpart_block)

    $default  reduce using rule 131 (bookpart_body)

    $default  reduce using rule 132 (bookpart_body)

    $default  reduce using rule 133 (bookpart_body)

    $default  reduce using rule 134 (bookpart_body)

    $default  reduce using rule 135 (bookpart_body)

    $default  reduce using rule 136 (bookpart_body)

    $default  reduce using rule 137 (bookpart_body)

    $default  reduce using rule 138 (bookpart_body)

    $default  reduce using rule 139 (bookpart_body)

    $default  reduce using rule 14 (toplevel_expression)

    $default  reduce using rule 141 (bookpart_body)

    $default  reduce using rule 142 (bookpart_body)

    $default  reduce using rule 143 (score_block)

    $default  reduce using rule 145 (score_body)

    $default  reduce using rule 146 (score_item)

    $default  reduce using rule 147 (score_item)

    $default  reduce using rule 148 (score_item)

    $default  reduce using rule 149 (score_items)

    $default  reduce using rule 149 (score_items)

    $default  reduce using rule 149 (score_items)

    $default  reduce using rule 15 (toplevel_expression)

    $default  reduce using rule 150 (score_items)

    $default  reduce using rule 152 (score_items)

    $default  reduce using rule 153 (paper_block)

    $default  reduce using rule 154 (output_def)

    $default  reduce using rule 155 (output_def_head)

    $default  reduce using rule 156 (output_def_head)

    $default  reduce using rule 157 (output_def_head)

    $default  reduce using rule 158 (output_def_head_with_mode_switch)

    $default  reduce using rule 159 (music_or_context_def)

    $default  reduce using rule 16 (toplevel_expression)

    $default  reduce using rule 160 (music_or_context_def)

    $default  reduce using rule 161 (output_def_body)

    $default  reduce using rule 162 (output_def_body)

    $default  reduce using rule 163 (output_def_body)

    $default  reduce using rule 164 (output_def_body)

    $default  reduce using rule 166 (output_def_body)

    $default  reduce using rule 167 (output_def_body)

    $default  reduce using rule 168 (tempo_event)

    $default  reduce using rule 169 (tempo_event)

    $default  reduce using rule 17 (toplevel_expression)

    $default  reduce using rule 170 (tempo_event)

    $default  reduce using rule 171 (music_list)

    $default  reduce using rule 171 (music_list)

    $default  reduce using rule 171 (music_list)

    $default  reduce using rule 172 (music_list)

    $default  reduce using rule 173 (music_list)

    $default  reduce using rule 174 (braced_music_list)

    $default  reduce using rule 175 (music)

    $default  reduce using rule 176 (music)

    $default  reduce using rule 177 (music)

    $default  reduce using rule 178 (pitch_as_music)

    $default  reduce using rule 179 (music_embedded)

    $default  reduce using rule 18 (toplevel_expression)

    $default  reduce using rule 180 (music_embedded)

    $default  reduce using rule 181 (music_embedded)

    $default  reduce using rule 182 (music_embedded)

    $default  reduce using rule 183 (music_embedded_backup)

    $default  reduce using rule 184 (music_assign)

    $default  reduce using rule 185 (music_assign)

    $default  reduce using rule 186 (repeated_music)

    $default  reduce using rule 187 (repeated_music)

    $default  reduce using rule 188 (sequential_music)

    $default  reduce using rule 189 (sequential_music)

    $default  reduce using rule 19 (toplevel_expression)

    $default  reduce using rule 190 (simultaneous_music)

    $default  reduce using rule 191 (simultaneous_music)

    $default  reduce using rule 192 (simple_music)

    $default  reduce using rule 193 (simple_music)

    $default  reduce using rule 194 (simple_music)

    $default  reduce using rule 195 ($@8)

    $default  reduce using rule 196 (context_modification)

    $default  reduce using rule 197 (context_modification)

    $default  reduce using rule 198 (context_modification_arg)

    $default  reduce using rule 199 (context_modification_arg)

    $default  reduce using rule 2 ($@1)

    $default  reduce using rule 20 (lookup)

    $default  reduce using rule 200 (optional_context_mods)

    $default  reduce using rule 201 (context_modification_mods_list)

    $default  reduce using rule 201 (context_modification_mods_list)

    $default  reduce using rule 201 (context_modification_mods_list)

    $default  reduce using rule 201 (context_modification_mods_list)

    $default  reduce using rule 201 (context_modification_mods_list)

    $default  reduce using rule 202 (context_modification_mods_list)

    $default  reduce using rule 203 (context_mod_list)

    $default  reduce using rule 204 (context_mod_list)

    $default  reduce using rule 205 (context_mod_list)

    $default  reduce using rule 206 (context_prefix)

    $default  reduce using rule 207 (context_prefix)

    $default  reduce using rule 208 (new_lyrics)

    $default  reduce using rule 209 (new_lyrics)

    $default  reduce using rule 21 (lookup)

    $default  reduce using rule 210 (basic_music)

    $default  reduce using rule 211 (basic_music)

    $default  reduce using rule 212 (basic_music)

    $default  reduce using rule 213 (basic_music)

    $default  reduce using rule 214 (basic_music)

    $default  reduce using rule 215 (contextable_music)

    $default  reduce using rule 216 (contextable_music)

    $default  reduce using rule 217 (contextable_music)

    $default  reduce using rule 218 (contexted_basic_music)

    $default  reduce using rule 219 (contexted_basic_music)

    $default  reduce using rule 22 (embedded_scm_bare)

    $default  reduce using rule 220 (contexted_basic_music)

    $default  reduce using rule 221 (composite_music)

    $default  reduce using rule 222 (composite_music)

    $default  reduce using rule 223 (composite_music)

    $default  reduce using rule 224 (music_bare)

    $default  reduce using rule 225 (music_bare)

    $default  reduce using rule 226 (music_bare)

    $default  reduce using rule 227 (grouped_music_list)

    $default  reduce using rule 228 (grouped_music_list)

    $default  reduce using rule 229 (symbol_list_arg)

    $default  reduce using rule 23 (embedded_scm_bare)

    $default  reduce using rule 230 (symbol_list_arg)

    $default  reduce using rule 231 (symbol_list_arg)

    $default  reduce using rule 232 (symbol_list_rev)

    $default  reduce using rule 233 (symbol_list_rev)

    $default  reduce using rule 234 (symbol_list_rev)

    $default  reduce using rule 235 (symbol_list_part)

    $default  reduce using rule 236 (symbol_list_part)

    $default  reduce using rule 237 (symbol_list_element)

    $default  reduce using rule 238 (symbol_list_element)

    $default  reduce using rule 239 (symbol_list_part_bare)

    $default  reduce using rule 24 (embedded_scm_active)

    $default  reduce using rule 240 (symbol_list_part_bare)

    $default  reduce using rule 241 (function_arglist_nonbackup)

    $default  reduce using rule 242 (function_arglist_nonbackup)

    $default  reduce using rule 243 (function_arglist_nonbackup)

    $default  reduce using rule 244 (function_arglist_nonbackup)

    $default  reduce using rule 245 (function_arglist_nonbackup)

    $default  reduce using rule 246 (function_arglist_nonbackup)

    $default  reduce using rule 247 (function_arglist_nonbackup)

    $default  reduce using rule 248 (function_arglist_nonbackup)

    $default  reduce using rule 249 (function_arglist_nonbackup)

    $default  reduce using rule 25 (embedded_scm_active)

    $default  reduce using rule 250 (function_arglist_nonbackup)

    $default  reduce using rule 251 (function_arglist_nonbackup)

    $default  reduce using rule 252 (function_arglist_nonbackup)

    $default  reduce using rule 253 (function_arglist_nonbackup)

    $default  reduce using rule 254 (function_arglist_nonbackup)

    $default  reduce using rule 255 (reparsed_rhythm)

    $default  reduce using rule 256 (function_arglist_nonbackup_reparse)

    $default  reduce using rule 257 (function_arglist_nonbackup_reparse)

    $default  reduce using rule 258 (function_arglist_nonbackup_reparse)

    $default  reduce using rule 259 (function_arglist_nonbackup_reparse)

    $default  reduce using rule 26 (embedded_scm_active)

    $default  reduce using rule 260 (function_arglist_nonbackup_reparse)

    $default  reduce using rule 261 (function_arglist_nonbackup_reparse)

    $default  reduce using rule 262 (function_arglist_nonbackup_reparse)

    $default  reduce using rule 263 (function_arglist_nonbackup_reparse)

    $default  reduce using rule 264 (function_arglist_backup)

    $default  reduce using rule 265 (function_arglist_backup)

    $default  reduce using rule 266 (function_arglist_backup)

    $default  reduce using rule 267 (function_arglist_backup)

    $default  reduce using rule 268 (function_arglist_backup)

    $default  reduce using rule 269 (function_arglist_backup)

    $default  reduce using rule 27 (embedded_scm_bare_arg)

    $default  reduce using rule 270 (function_arglist_backup)

    $default  reduce using rule 271 (function_arglist_backup)

    $default  reduce using rule 272 (function_arglist_backup)

    $default  reduce using rule 273 (function_arglist_backup)

    $default  reduce using rule 274 (function_arglist_backup)

    $default  reduce using rule 275 (function_arglist_backup)

    $default  reduce using rule 276 (function_arglist_backup)

    $default  reduce using rule 277 (function_arglist_backup)

    $default  reduce using rule 278 (function_arglist_backup)

    $default  reduce using rule 279 (function_arglist_backup)

    $default  reduce using rule 28 (embedded_scm_bare_arg)

    $default  reduce using rule 280 (function_arglist_backup)

    $default  reduce using rule 281 (function_arglist_backup)

    $default  reduce using rule 282 (function_arglist_backup)

    $default  reduce using rule 283 (function_arglist_backup)

    $default  reduce using rule 284 (function_arglist_backup)

    $default  reduce using rule 285 (function_arglist)

    $default  reduce using rule 286 (function_arglist)

    $default  reduce using rule 288 (function_arglist_skip_nonbackup)

    $default  reduce using rule 289 (function_arglist_partial)

    $default  reduce using rule 289 (function_arglist_partial)

    $default  reduce using rule 289 (function_arglist_partial)

    $default  reduce using rule 29 (embedded_scm_bare_arg)

    $default  reduce using rule 290 (function_arglist_partial)

    $default  reduce using rule 291 (function_arglist_partial)

    $default  reduce using rule 291 (function_arglist_partial)

    $default  reduce using rule 291 (function_arglist_partial)

    $default  reduce using rule 292 (function_arglist_partial)

    $default  reduce using rule 294 (function_arglist_partial_optional)

    $default  reduce using rule 296 (function_arglist_partial_optional)

    $default  reduce using rule 297 (function_arglist_common)

    $default  reduce using rule 298 (function_arglist_common)

    $default  reduce using rule 299 (function_arglist_common)

    $default  reduce using rule 3 (start_symbol)

    $default  reduce using rule 30 (embedded_scm_bare_arg)

    $default  reduce using rule 300 (function_arglist_common)

    $default  reduce using rule 301 (function_arglist_common)

    $default  reduce using rule 302 (function_arglist_common)

    $default  reduce using rule 303 (function_arglist_common)

    $default  reduce using rule 304 (function_arglist_common)

    $default  reduce using rule 305 (function_arglist_common)

    $default  reduce using rule 306 (function_arglist_common)

    $default  reduce using rule 307 (function_arglist_common)

    $default  reduce using rule 308 (function_arglist_common)

    $default  reduce using rule 309 (function_arglist_common_reparse)

    $default  reduce using rule 31 (embedded_scm_bare_arg)

    $default  reduce using rule 310 (function_arglist_common_reparse)

    $default  reduce using rule 311 (function_arglist_common_reparse)

    $default  reduce using rule 312 (function_arglist_common_reparse)

    $default  reduce using rule 313 (function_arglist_common_reparse)

    $default  reduce using rule 314 (function_arglist_common_reparse)

    $default  reduce using rule 315 (function_arglist_common_reparse)

    $default  reduce using rule 316 (function_arglist_common_reparse)

    $default  reduce using rule 317 (function_arglist_common_reparse)

    $default  reduce using rule 318 (function_arglist_common_reparse)

    $default  reduce using rule 32 (embedded_scm_bare_arg)

    $default  reduce using rule 320 (function_arglist_optional)

    $default  reduce using rule 321 (function_arglist_optional)

    $default  reduce using rule 323 (function_arglist_skip_backup)

    $default  reduce using rule 323 (function_arglist_skip_backup)

    $default  reduce using rule 324 (music_function_call)

    $default  reduce using rule 325 (optional_id)

    $default  reduce using rule 325 (optional_id)

    $default  reduce using rule 326 (optional_id)

    $default  reduce using rule 327 ($@9)

    $default  reduce using rule 327 ($@9)

    $default  reduce using rule 327 ($@9)

    $default  reduce using rule 327 ($@9)

    $default  reduce using rule 328 (lyric_mode_music)

    $default  reduce using rule 329 (lyric_mode_music)

    $default  reduce using rule 33 (embedded_scm_bare_arg)

    $default  reduce using rule 330 (mode_changed_music)

    $default  reduce using rule 331 (mode_changed_music)

    $default  reduce using rule 332 (mode_changing_head)

    $default  reduce using rule 333 (mode_changing_head)

    $default  reduce using rule 334 (mode_changing_head)

    $default  reduce using rule 335 (mode_changing_head)

    $default  reduce using rule 336 (mode_changing_head)

    $default  reduce using rule 337 (mode_changing_head_with_context)

    $default  reduce using rule 338 (mode_changing_head_with_context)

    $default  reduce using rule 339 (mode_changing_head_with_context)

    $default  reduce using rule 34 (embedded_scm_bare_arg)

    $default  reduce using rule 340 (mode_changing_head_with_context)

    $default  reduce using rule 341 (context_change)

    $default  reduce using rule 342 (property_path)

    $default  reduce using rule 343 (property_operation)

    $default  reduce using rule 344 (property_operation)

    $default  reduce using rule 345 (property_operation)

    $default  reduce using rule 346 (property_operation)

    $default  reduce using rule 347 (revert_arg)

    $default  reduce using rule 348 (revert_arg_backup)

    $default  reduce using rule 349 (revert_arg_part)

    $default  reduce using rule 35 (embedded_scm_bare_arg)

    $default  reduce using rule 350 (revert_arg_part)

    $default  reduce using rule 351 (revert_arg_part)

    $default  reduce using rule 352 (revert_arg_part)

    $default  reduce using rule 353 (context_def_mod)

    $default  reduce using rule 354 (context_def_mod)

    $default  reduce using rule 355 (context_def_mod)

    $default  reduce using rule 356 (context_def_mod)

    $default  reduce using rule 357 (context_def_mod)

    $default  reduce using rule 358 (context_def_mod)

    $default  reduce using rule 359 (context_def_mod)

    $default  reduce using rule 36 (embedded_scm_bare_arg)

    $default  reduce using rule 360 (context_def_mod)

    $default  reduce using rule 361 (context_def_mod)

    $default  reduce using rule 362 (context_mod)

    $default  reduce using rule 363 (context_mod)

    $default  reduce using rule 364 (context_mod)

    $default  reduce using rule 365 (context_mod)

    $default  reduce using rule 366 (grob_prop_spec)

    $default  reduce using rule 367 (grob_prop_path)

    $default  reduce using rule 368 (grob_prop_path)

    $default  reduce using rule 369 (context_prop_spec)

    $default  reduce using rule 37 (embedded_scm_bare_arg)

    $default  reduce using rule 370 (simple_revert_context)

    $default  reduce using rule 371 (music_property_def)

    $default  reduce using rule 372 (music_property_def)

    $default  reduce using rule 373 (music_property_def)

    $default  reduce using rule 374 (music_property_def)

    $default  reduce using rule 377 (string)

    $default  reduce using rule 378 (text)

    $default  reduce using rule 379 (text)

    $default  reduce using rule 38 (embedded_scm_bare_arg)

    $default  reduce using rule 380 (text)

    $default  reduce using rule 381 (text)

    $default  reduce using rule 382 (simple_string)

    $default  reduce using rule 383 (simple_string)

    $default  reduce using rule 384 (simple_string)

    $default  reduce using rule 385 (symbol)

    $default  reduce using rule 386 (symbol)

    $default  reduce using rule 387 (symbol)

    $default  reduce using rule 388 (scalar)

    $default  reduce using rule 389 (scalar)

    $default  reduce using rule 39 (embedded_scm_bare_arg)

    $default  reduce using rule 390 (scalar)

    $default  reduce using rule 391 (scalar)

    $default  reduce using rule 392 (scalar)

    $default  reduce using rule 393 (scalar)

    $default  reduce using rule 394 (scalar)

    $default  reduce using rule 395 (scalar)

    $default  reduce using rule 396 (event_chord)

    $default  reduce using rule 397 (event_chord)

    $default  reduce using rule 398 (event_chord)

    $default  reduce using rule 399 (event_chord)

    $default  reduce using rule 4 (lilypond)

    $default  reduce using rule 40 (embedded_scm)

    $default  reduce using rule 400 (event_chord)

    $default  reduce using rule 401 (note_chord_element)

    $default  reduce using rule 402 (chord_body)

    $default  reduce using rule 403 (chord_body)

    $default  reduce using rule 404 (chord_body_elements)

    $default  reduce using rule 405 (chord_body_elements)

    $default  reduce using rule 406 (chord_body_element)

    $default  reduce using rule 407 (chord_body_element)

    $default  reduce using rule 408 (chord_body_element)

    $default  reduce using rule 409 (music_function_chord_body)

    $default  reduce using rule 41 (embedded_scm)

    $default  reduce using rule 410 (music_function_chord_body)

    $default  reduce using rule 411 (music_function_chord_body)

    $default  reduce using rule 412 (event_function_event)

    $default  reduce using rule 413 (post_events)

    $default  reduce using rule 413 (post_events)

    $default  reduce using rule 413 (post_events)

    $default  reduce using rule 413 (post_events)

    $default  reduce using rule 413 (post_events)

    $default  reduce using rule 413 (post_events)

    $default  reduce using rule 413 (post_events)

    $default  reduce using rule 413 (post_events)

    $default  reduce using rule 413 (post_events)

    $default  reduce using rule 413 (post_events)

    $default  reduce using rule 413 (post_events)

    $default  reduce using rule 413 (post_events)

    $default  reduce using rule 413 (post_events)

    $default  reduce using rule 414 (post_events)

    $default  reduce using rule 415 (post_event_nofinger)

    $default  reduce using rule 416 (post_event_nofinger)

    $default  reduce using rule 417 (post_event_nofinger)

    $default  reduce using rule 418 (post_event_nofinger)

    $default  reduce using rule 419 (post_event_nofinger)

    $default  reduce using rule 42 (embedded_scm)

    $default  reduce using rule 420 (post_event_nofinger)

    $default  reduce using rule 421 (post_event_nofinger)

    $default  reduce using rule 422 (post_event_nofinger)

    $default  reduce using rule 423 (post_event)

    $default  reduce using rule 424 (post_event)

    $default  reduce using rule 425 (string_number_event)

    $default  reduce using rule 426 (direction_less_event)

    $default  reduce using rule 427 (direction_less_event)

    $default  reduce using rule 428 (direction_less_event)

    $default  reduce using rule 429 (direction_less_event)

    $default  reduce using rule 43 (embedded_scm_arg)

    $default  reduce using rule 430 (direction_reqd_event)

    $default  reduce using rule 431 (direction_reqd_event)

    $default  reduce using rule 432 (octave_check)

    $default  reduce using rule 432 (octave_check)

    $default  reduce using rule 433 (octave_check)

    $default  reduce using rule 434 (quotes)

    $default  reduce using rule 434 (quotes)

    $default  reduce using rule 434 (quotes)

    $default  reduce using rule 434 (quotes)

    $default  reduce using rule 435 (quotes)

    $default  reduce using rule 436 (quotes)

    $default  reduce using rule 437 (sup_quotes)

    $default  reduce using rule 438 (sup_quotes)

    $default  reduce using rule 439 (sub_quotes)

    $default  reduce using rule 44 (embedded_scm_arg)

    $default  reduce using rule 440 (sub_quotes)

    $default  reduce using rule 441 (steno_pitch)

    $default  reduce using rule 442 (steno_tonic_pitch)

    $default  reduce using rule 443 (pitch)

    $default  reduce using rule 444 (pitch)

    $default  reduce using rule 445 (pitch_or_tonic_pitch)

    $default  reduce using rule 446 (pitch_or_tonic_pitch)

    $default  reduce using rule 447 (gen_text_def)

    $default  reduce using rule 448 (gen_text_def)

    $default  reduce using rule 449 (gen_text_def)

    $default  reduce using rule 45 (embedded_scm_arg)

    $default  reduce using rule 450 (gen_text_def)

    $default  reduce using rule 451 (fingering)

    $default  reduce using rule 451 (fingering)

    $default  reduce using rule 452 (script_abbreviation)

    $default  reduce using rule 453 (script_abbreviation)

    $default  reduce using rule 454 (script_abbreviation)

    $default  reduce using rule 455 (script_abbreviation)

    $default  reduce using rule 456 (script_abbreviation)

    $default  reduce using rule 457 (script_abbreviation)

    $default  reduce using rule 458 (script_abbreviation)

    $default  reduce using rule 459 (script_dir)

    $default  reduce using rule 459 (script_dir)

    $default  reduce using rule 46 (scm_function_call)

    $default  reduce using rule 460 (script_dir)

    $default  reduce using rule 460 (script_dir)

    $default  reduce using rule 461 (script_dir)

    $default  reduce using rule 461 (script_dir)

    $default  reduce using rule 461 (script_dir)

    $default  reduce using rule 461 (script_dir)

    $default  reduce using rule 461 (script_dir)

    $default  reduce using rule 461 (script_dir)

    $default  reduce using rule 461 (script_dir)

    $default  reduce using rule 461 (script_dir)

    $default  reduce using rule 462 (maybe_notemode_duration)

    $default  reduce using rule 462 (maybe_notemode_duration)

    $default  reduce using rule 462 (maybe_notemode_duration)

    $default  reduce using rule 462 (maybe_notemode_duration)

    $default  reduce using rule 462 (maybe_notemode_duration)

    $default  reduce using rule 462 (maybe_notemode_duration)

    $default  reduce using rule 462 (maybe_notemode_duration)

    $default  reduce using rule 462 (maybe_notemode_duration)

    $default  reduce using rule 463 (maybe_notemode_duration)

    $default  reduce using rule 464 (optional_notemode_duration)

    $default  reduce using rule 465 (steno_duration)

    $default  reduce using rule 466 (steno_duration)

    $default  reduce using rule 467 (multiplied_duration)

    $default  reduce using rule 468 (dots)

    $default  reduce using rule 468 (dots)

    $default  reduce using rule 468 (dots)

    $default  reduce using rule 468 (dots)

    $default  reduce using rule 469 (dots)

    $default  reduce using rule 47 (embedded_lilypond_number)

    $default  reduce using rule 470 (multipliers)

    $default  reduce using rule 470 (multipliers)

    $default  reduce using rule 471 (multipliers)

    $default  reduce using rule 472 (multipliers)

    $default  reduce using rule 473 (tremolo_type)

    $default  reduce using rule 474 (tremolo_type)

    $default  reduce using rule 475 (bass_number)

    $default  reduce using rule 476 (bass_number)

    $default  reduce using rule 477 (bass_number)

    $default  reduce using rule 478 (bass_number)

    $default  reduce using rule 479 (bass_number)

    $default  reduce using rule 48 (embedded_lilypond_number)

    $default  reduce using rule 480 (figured_bass_alteration)

    $default  reduce using rule 481 (figured_bass_alteration)

    $default  reduce using rule 482 (figured_bass_alteration)

    $default  reduce using rule 483 (bass_figure)

    $default  reduce using rule 484 (bass_figure)

    $default  reduce using rule 485 (bass_figure)

    $default  reduce using rule 486 (bass_figure)

    $default  reduce using rule 487 (bass_figure)

    $default  reduce using rule 488 (figured_bass_modification)

    $default  reduce using rule 489 (figured_bass_modification)

    $default  reduce using rule 49 (embedded_lilypond_number)

    $default  reduce using rule 490 (figured_bass_modification)

    $default  reduce using rule 491 (figured_bass_modification)

    $default  reduce using rule 492 (br_bass_figure)

    $default  reduce using rule 493 (br_bass_figure)

    $default  reduce using rule 494 (figure_list)

    $default  reduce using rule 495 (figure_list)

    $default  reduce using rule 496 (optional_rest)

    $default  reduce using rule 497 (optional_rest)

    $default  reduce using rule 498 (pitch_or_music)

    $default  reduce using rule 499 (pitch_or_music)

    $default  reduce using rule 5 (lilypond)

    $default  reduce using rule 500 (simple_element)

    $default  reduce using rule 501 (simple_element)

    $default  reduce using rule 502 (lyric_element)

    $default  reduce using rule 503 (lyric_element)

    $default  reduce using rule 504 (lyric_element)

    $default  reduce using rule 505 (lyric_element)

    $default  reduce using rule 506 (lyric_element_music)

    $default  reduce using rule 508 (new_chord)

    $default  reduce using rule 509 (chord_items)

    $default  reduce using rule 51 (embedded_lilypond)

    $default  reduce using rule 510 (chord_items)

    $default  reduce using rule 511 (chord_separator)

    $default  reduce using rule 512 (chord_separator)

    $default  reduce using rule 513 (chord_separator)

    $default  reduce using rule 514 (chord_separator)

    $default  reduce using rule 515 (chord_item)

    $default  reduce using rule 516 (chord_item)

    $default  reduce using rule 517 (chord_item)

    $default  reduce using rule 518 (step_numbers)

    $default  reduce using rule 519 (step_numbers)

    $default  reduce using rule 52 (embedded_lilypond)

    $default  reduce using rule 520 (step_number)

    $default  reduce using rule 521 (step_number)

    $default  reduce using rule 522 (step_number)

    $default  reduce using rule 523 (tempo_range)

    $default  reduce using rule 524 (tempo_range)

    $default  reduce using rule 525 (number_expression)

    $default  reduce using rule 526 (number_expression)

    $default  reduce using rule 527 (number_expression)

    $default  reduce using rule 528 (number_term)

    $default  reduce using rule 529 (number_term)

    $default  reduce using rule 53 (embedded_lilypond)

    $default  reduce using rule 530 (number_term)

    $default  reduce using rule 531 (number_factor)

    $default  reduce using rule 532 (number_factor)

    $default  reduce using rule 533 (bare_number_common)

    $default  reduce using rule 534 (bare_number_common)

    $default  reduce using rule 535 (bare_number_common)

    $default  reduce using rule 536 (bare_number)

    $default  reduce using rule 537 (bare_number)

    $default  reduce using rule 538 (bare_number)

    $default  reduce using rule 539 (unsigned_number)

    $default  reduce using rule 540 (unsigned_number)

    $default  reduce using rule 541 (unsigned_number)

    $default  reduce using rule 542 (exclamations)

    $default  reduce using rule 542 (exclamations)

    $default  reduce using rule 543 (exclamations)

    $default  reduce using rule 544 (questions)

    $default  reduce using rule 544 (questions)

    $default  reduce using rule 545 (questions)

    $default  reduce using rule 546 ($@10)

    $default  reduce using rule 547 (full_markup_list)

    $default  reduce using rule 548 (markup_mode)

    $default  reduce using rule 549 (markup_mode_word)

    $default  reduce using rule 550 (full_markup)

    $default  reduce using rule 551 (full_markup)

    $default  reduce using rule 551 (full_markup)

    $default  reduce using rule 552 (partial_markup)

    $default  reduce using rule 553 (markup_top)

    $default  reduce using rule 554 (markup_top)

    $default  reduce using rule 555 (markup_top)

    $default  reduce using rule 556 ($@11)

    $default  reduce using rule 557 (markup_scm)

    $default  reduce using rule 558 (markup_list)

    $default  reduce using rule 559 (markup_list)

    $default  reduce using rule 56 (embedded_lilypond)

    $default  reduce using rule 560 (markup_uncomposed_list)

    $default  reduce using rule 561 (markup_uncomposed_list)

    $default  reduce using rule 562 (markup_uncomposed_list)

    $default  reduce using rule 563 ($@12)

    $default  reduce using rule 564 (markup_uncomposed_list)

    $default  reduce using rule 565 (markup_composed_list)

    $default  reduce using rule 566 (markup_braced_list)

    $default  reduce using rule 567 (markup_braced_list_body)

    $default  reduce using rule 568 (markup_braced_list_body)

    $default  reduce using rule 569 (markup_braced_list_body)

    $default  reduce using rule 57 (embedded_lilypond)

    $default  reduce using rule 570 (markup_command_list)

    $default  reduce using rule 571 (markup_command_basic_arguments)

    $default  reduce using rule 572 (markup_command_basic_arguments)

    $default  reduce using rule 573 (markup_command_basic_arguments)

    $default  reduce using rule 574 (markup_command_basic_arguments)

    $default  reduce using rule 575 (markup_command_list_arguments)

    $default  reduce using rule 576 (markup_command_list_arguments)

    $default  reduce using rule 577 (markup_partial_function)

    $default  reduce using rule 578 (markup_partial_function)

    $default  reduce using rule 579 (markup_arglist_partial)

    $default  reduce using rule 58 (lilypond_header_body)

    $default  reduce using rule 580 (markup_arglist_partial)

    $default  reduce using rule 581 (markup_arglist_partial)

    $default  reduce using rule 582 (markup_arglist_partial)

    $default  reduce using rule 582 (markup_arglist_partial)

    $default  reduce using rule 583 (markup_head_1_item)

    $default  reduce using rule 584 (markup_head_1_list)

    $default  reduce using rule 585 (markup_head_1_list)

    $default  reduce using rule 586 (markup_word)

    $default  reduce using rule 587 (markup_word)

    $default  reduce using rule 588 (simple_markup)

    $default  reduce using rule 589 (simple_markup)

    $default  reduce using rule 59 (lilypond_header_body)

    $default  reduce using rule 590 ($@13)

    $default  reduce using rule 591 (simple_markup_noword)

    $default  reduce using rule 592 (simple_markup_noword)

    $default  reduce using rule 593 (simple_markup_noword)

    $default  reduce using rule 594 (markup)

    $default  reduce using rule 595 (markup)

    $default  reduce using rule 6 (lilypond)

    $default  reduce using rule 60 (lilypond_header_body)

    $default  reduce using rule 61 (lilypond_header_body)

    $default  reduce using rule 62 (lilypond_header)

    $default  reduce using rule 63 ($@2)

    $default  reduce using rule 63 ($@2)

    $default  reduce using rule 63 ($@2)

    $default  reduce using rule 63 ($@2)

    $default  reduce using rule 63 ($@2)

    $default  reduce using rule 63 ($@2)

    $default  reduce using rule 63 ($@2)

    $default  reduce using rule 63 ($@2)

    $default  reduce using rule 63 ($@2)

    $default  reduce using rule 64 (header_block)

    $default  reduce using rule 65 (assignment_id)

    $default  reduce using rule 66 (assignment_id)

    $default  reduce using rule 67 (assignment)

    $default  reduce using rule 68 (assignment)

    $default  reduce using rule 69 (assignment)

    $default  reduce using rule 7 (lilypond)

    $default  reduce using rule 70 (assignment)

    $default  reduce using rule 71 (identifier_init)

    $default  reduce using rule 72 (identifier_init)

    $default  reduce using rule 73 (identifier_init)

    $default  reduce using rule 74 (identifier_init)

    $default  reduce using rule 75 (identifier_init)

    $default  reduce using rule 76 (identifier_init_nonumber)

    $default  reduce using rule 77 (identifier_init_nonumber)

    $default  reduce using rule 78 (identifier_init_nonumber)

    $default  reduce using rule 79 (identifier_init_nonumber)

    $default  reduce using rule 8 (lilypond)

    $default  reduce using rule 80 (identifier_init_nonumber)

    $default  reduce using rule 81 (identifier_init_nonumber)

    $default  reduce using rule 82 (identifier_init_nonumber)

    $default  reduce using rule 83 (identifier_init_nonumber)

    $default  reduce using rule 84 (identifier_init_nonumber)

    $default  reduce using rule 85 (identifier_init_nonumber)

    $default  reduce using rule 86 (identifier_init_nonumber)

    $default  reduce using rule 87 (identifier_init_nonumber)

    $default  reduce using rule 88 (identifier_init_nonumber)

    $default  reduce using rule 89 (identifier_init_nonumber)

    $default  reduce using rule 9 (toplevel_expression)

    $default  reduce using rule 90 (identifier_init_nonumber)

    $default  reduce using rule 91 (partial_function_scriptable)

    $default  reduce using rule 92 (partial_function_scriptable)

    $default  reduce using rule 93 (partial_function_scriptable)

    $default  reduce using rule 94 (partial_function_scriptable)

    $default  reduce using rule 95 (partial_function_scriptable)

    $default  reduce using rule 96 (partial_function_scriptable)

    $default  reduce using rule 97 (partial_function_scriptable)

    $default  reduce using rule 98 (partial_function_scriptable)

    $default  reduce using rule 99 (partial_function_scriptable)

    '!'  shift, and go to state 498

    '!'  shift, and go to state 498

    '*'  shift, and go to state 501

    '*'  shift, and go to state 501

    '*'  shift, and go to state 604
    '/'  shift, and go to state 605

    ','   shift, and go to state 296
    '\''  shift, and go to state 297

    ','   shift, and go to state 296
    '\''  shift, and go to state 297

    ','   shift, and go to state 296
    '\''  shift, and go to state 297

    ','   shift, and go to state 296
    '\''  shift, and go to state 297

    ','  shift, and go to state 481

    '-'  shift, and go to state 602
    '+'  shift, and go to state 603

    '-'  shift, and go to state 787

    '.'  shift, and go to state 189

    '.'  shift, and go to state 435

    '.'  shift, and go to state 435

    '.'  shift, and go to state 435

    '.'  shift, and go to state 443
    ','  shift, and go to state 444

    '.'  shift, and go to state 443
    ','  shift, and go to state 444

    '.'  shift, and go to state 443
    ','  shift, and go to state 444

    '.'  shift, and go to state 443
    ','  shift, and go to state 444

    '.'  shift, and go to state 443
    ','  shift, and go to state 444

    '.'  shift, and go to state 443
    ','  shift, and go to state 444

    '.'  shift, and go to state 599
    ','  shift, and go to state 600

    '.'  shift, and go to state 738
    ','  shift, and go to state 739

    '.'  shift, and go to state 779
    ','  shift, and go to state 780

    '.'  shift, and go to state 850

    '='  shift, and go to state 244

    '='  shift, and go to state 244

    '='  shift, and go to state 360

    '='  shift, and go to state 360

    '='  shift, and go to state 365

    '='  shift, and go to state 441

    '='  shift, and go to state 446

    '='  shift, and go to state 451

    '='  shift, and go to state 453

    '='  shift, and go to state 594

    '='  shift, and go to state 606

    '='  shift, and go to state 670

    '='  shift, and go to state 691

    '='  shift, and go to state 692

    '='  shift, and go to state 696
    '?'  shift, and go to state 697

    '='  shift, and go to state 696
    '?'  shift, and go to state 697

    '='  shift, and go to state 775

    '='  shift, and go to state 831

    '='  shift, and go to state 881

    '='  shift, and go to state 882

    '\''  shift, and go to state 480

    '{'  shift, and go to state 172

    '{'  shift, and go to state 173

    '{'  shift, and go to state 184

    '{'  shift, and go to state 205

    '{'  shift, and go to state 386

    '{'  shift, and go to state 41

    '{'  shift, and go to state 41

    '{'  shift, and go to state 41

    '{'  shift, and go to state 454

    '{'  shift, and go to state 609

    '{'  shift, and go to state 610

    0 $accept: . start_symbol "end of input"

    0 $accept: start_symbol "end of input" .

    0 $accept: start_symbol . "end of input"

    3 start_symbol: "#{" $@1 . embedded_lilypond

    3 start_symbol: "#{" $@1 embedded_lilypond .

    3 start_symbol: "#{" . $@1 embedded_lilypond

    5 lilypond: lilypond toplevel_expression .

    6 lilypond: lilypond assignment .

    7 lilypond: lilypond error .

    8 lilypond: lilypond "\version-error" .

    9 toplevel_expression: header_block .

    book_body  go to state 357

    BOOK_IDENTIFIER  shift, and go to state 356

    BOOK_IDENTIFIER  shift, and go to state 358

    bookpart_body  go to state 359

    braced_music_list  go to state 185

    braced_music_list  go to state 186

    braced_music_list  go to state 804

    chord_body_elements  go to state 286

    chord_items  go to state 695

    chord_separator  go to state 497

    context_def_spec_body  go to state 442

    context_mod_list  go to state 673

    context_modification  go to state 414

    dots  go to state 247

    dots  go to state 247

    dots  go to state 256

    dots  go to state 737

    error  shift, and go to state 535
    '}'    shift, and go to state 536

    error  shift, and go to state 535
    '}'    shift, and go to state 827

    error  shift, and go to state 535
    '}'    shift, and go to state 828

    exclamations  go to state 325

    exclamations  go to state 675

    figure_list  go to state 287

    fingering  go to state 254

    fingering  go to state 255

    fingering  go to state 309

    function_arglist_partial  go to state 252

    function_arglist_partial  go to state 295

    function_arglist_partial  go to state 305

    lilypond_header  go to state 201

    lilypond_header  go to state 708

    lilypond_header  go to state 709

    lilypond_header  go to state 711

    lilypond_header_body  go to state 593

    lyric_mode_music  go to state 363
    $@9               go to state 364

    lyric_mode_music  go to state 607
    $@9               go to state 364

    lyric_mode_music  go to state 710
    $@9               go to state 364

    lyric_mode_music  go to state 752
    $@9               go to state 364

    markup_arglist_partial  go to state 505

    markup_arglist_partial  go to state 706

    markup_braced_list_body  go to state 425

    markup_command_basic_arguments  go to state 421

    MARKUP_FUNCTION  shift, and go to state 841

    MARKUP_FUNCTION  shift, and go to state 869

    markup_head_1_item  go to state 430

    MARKUP_IDENTIFIER  shift, and go to state 427

    markup_word  go to state 242

    MARKUPLIST_IDENTIFIER  shift, and go to state 428

    multipliers  go to state 344

    multipliers  go to state 824

    MUSIC_IDENTIFIER  shift, and go to state 362

    MUSIC_IDENTIFIER  shift, and go to state 362

    MUSIC_IDENTIFIER  shift, and go to state 362

    MUSIC_IDENTIFIER  shift, and go to state 362

    music_list  go to state 188

    music_list  go to state 199

    music_list  go to state 486

    new_lyrics  go to state 221

    new_lyrics  go to state 410

    NUMBER_IDENTIFIER  shift, and go to state 246

    NUMBER_IDENTIFIER  shift, and go to state 246

    NUMBER_IDENTIFIER  shift, and go to state 248

    NUMBER_IDENTIFIER  shift, and go to state 595

    NUMBER_IDENTIFIER  shift, and go to state 595

    octave_check  go to state 698

    octave_check  go to state 847

    optional_id  go to state 361

    optional_id  go to state 372

    optional_rest  go to state 852

    post_events  go to state 322

    post_events  go to state 345

    post_events  go to state 345

    post_events  go to state 346

    post_events  go to state 348

    post_events  go to state 476

    post_events  go to state 477

    post_events  go to state 488

    post_events  go to state 502

    post_events  go to state 601

    post_events  go to state 674

    post_events  go to state 857

    post_events  go to state 872

    post_events  go to state 874

    questions  go to state 499

    questions  go to state 791

    score_body   go to state 370
    score_items  go to state 371

    score_body   go to state 753
    score_items  go to state 371

    score_body   go to state 754
    score_items  go to state 371

    start_symbol  go to state 2
    lilypond      go to state 3

    steno_duration  go to state 452

    steno_tonic_pitch  go to state 693

    steno_tonic_pitch  go to state 694

    step_number  go to state 873

    symbol_list_arg  go to state 785

    TONICNAME_PITCH  shift, and go to state 112

    TONICNAME_PITCH  shift, and go to state 112

    UNSIGNED  shift, and go to state 245

    UNSIGNED  shift, and go to state 253

    UNSIGNED  shift, and go to state 253

    UNSIGNED  shift, and go to state 253

    UNSIGNED  shift, and go to state 795
   10 toplevel_expression: book_block .
   11 toplevel_expression: bookpart_block .
   12 toplevel_expression: BOOK_IDENTIFIER .
   13 toplevel_expression: score_block .
   14 toplevel_expression: composite_music .
   15 toplevel_expression: full_markup .
   16 toplevel_expression: full_markup_list .
   17 toplevel_expression: SCM_TOKEN .
   18 toplevel_expression: embedded_scm_active .
   19 toplevel_expression: output_def .
   20 lookup: LOOKUP_IDENTIFIER .
   21       | LOOKUP_IDENTIFIER . '.' symbol_list_rev
   21 lookup: LOOKUP_IDENTIFIER '.' . symbol_list_rev
   21 lookup: LOOKUP_IDENTIFIER '.' symbol_list_rev .
   22 embedded_scm_bare: SCM_TOKEN .
   23 embedded_scm_bare: SCM_IDENTIFIER .
   24 embedded_scm_active: SCM_IDENTIFIER .
   25 embedded_scm_active: scm_function_call .
   26 embedded_scm_active: lookup .
   27 embedded_scm_bare_arg: SCM_ARG .
   28 embedded_scm_bare_arg: SCM_TOKEN .
   29 embedded_scm_bare_arg: FRACTION .
   30 embedded_scm_bare_arg: partial_markup .
   31 embedded_scm_bare_arg: full_markup_list .
   32 embedded_scm_bare_arg: context_modification .
   33 embedded_scm_bare_arg: header_block .
   34 embedded_scm_bare_arg: score_block .
   35 embedded_scm_bare_arg: context_def_spec_block .
   36 embedded_scm_bare_arg: book_block .
   37 embedded_scm_bare_arg: bookpart_block .
   38 embedded_scm_bare_arg: output_def .
   39 embedded_scm_bare_arg: lookup .
   40 embedded_scm: embedded_scm_bare .
   40 embedded_scm: embedded_scm_bare .
   41 embedded_scm: scm_function_call .
   42 embedded_scm: lookup .
   43 embedded_scm_arg: embedded_scm_bare_arg .
   44 embedded_scm_arg: scm_function_call .
   45 embedded_scm_arg: music_assign .
   46 scm_function_call: SCM_FUNCTION . function_arglist
   46 scm_function_call: SCM_FUNCTION . function_arglist
   46 scm_function_call: SCM_FUNCTION function_arglist .
   47 embedded_lilypond_number: '-' . embedded_lilypond_number
   47 embedded_lilypond_number: '-' embedded_lilypond_number .
   48 embedded_lilypond_number: bare_number_common .
   49 embedded_lilypond_number: UNSIGNED . NUMBER_IDENTIFIER
   49 embedded_lilypond_number: UNSIGNED . NUMBER_IDENTIFIER
   49 embedded_lilypond_number: UNSIGNED NUMBER_IDENTIFIER .
   51 embedded_lilypond: identifier_init_nonumber .
   52 embedded_lilypond: embedded_lilypond_number .
   53 embedded_lilypond: post_event . post_events
   53 embedded_lilypond: post_event post_events .
   54 embedded_lilypond: multiplied_duration .
   55 embedded_lilypond: music_embedded . music_embedded music_list
   55 embedded_lilypond: music_embedded music_embedded . music_list
   55 embedded_lilypond: music_embedded music_embedded music_list .
   56 embedded_lilypond: error .
   57 embedded_lilypond: "\version-error" . embedded_lilypond
   57 embedded_lilypond: "\version-error" embedded_lilypond .
   59 lilypond_header_body: lilypond_header_body . assignment
   59 lilypond_header_body: lilypond_header_body assignment .
   60                     | lilypond_header_body . SCM_TOKEN
   60 lilypond_header_body: lilypond_header_body SCM_TOKEN .
   61                     | lilypond_header_body . embedded_scm_active
   61 lilypond_header_body: lilypond_header_body embedded_scm_active .
   62 lilypond_header: "\header" '{' . lilypond_header_body '}'
   62 lilypond_header: "\header" '{' lilypond_header_body '}' .
   62 lilypond_header: "\header" '{' lilypond_header_body . '}'
   62 lilypond_header: "\header" . '{' lilypond_header_body '}'
   64 header_block: $@2 . lilypond_header
   64 header_block: $@2 lilypond_header .
   65 assignment_id: STRING .
   66 assignment_id: SYMBOL .
   67 assignment: assignment_id '=' . identifier_init
   67 assignment: assignment_id '=' identifier_init .
   67 assignment: assignment_id . '=' identifier_init
   68           | assignment_id . '.' property_path '=' identifier_init
   68 assignment: assignment_id '.' . property_path '=' identifier_init
   68 assignment: assignment_id '.' property_path '=' . identifier_init
   68 assignment: assignment_id '.' property_path '=' identifier_init .
   68 assignment: assignment_id '.' property_path . '=' identifier_init
   69           | assignment_id . ',' property_path '=' identifier_init
   69 assignment: assignment_id ',' . property_path '=' identifier_init
   69 assignment: assignment_id ',' property_path '=' . identifier_init
   69 assignment: assignment_id ',' property_path '=' identifier_init .
   69 assignment: assignment_id ',' property_path . '=' identifier_init
   70 assignment: markup_mode_word '=' . identifier_init
   70 assignment: markup_mode_word '=' identifier_init .
   70 assignment: markup_mode_word . '=' identifier_init
   70 assignment: markup_mode_word . '=' identifier_init
   71 identifier_init: identifier_init_nonumber .
   72 identifier_init: number_expression .
   73 identifier_init: symbol_list_part_bare '.' . property_path
   73 identifier_init: symbol_list_part_bare '.' property_path .
   73 identifier_init: symbol_list_part_bare . '.' property_path
   74                | symbol_list_part_bare . ',' property_path
   74 identifier_init: symbol_list_part_bare ',' . property_path
   74 identifier_init: symbol_list_part_bare ',' property_path .
   75 identifier_init: post_event_nofinger . post_events
   75 identifier_init: post_event_nofinger post_events .
   76 identifier_init_nonumber: header_block .
   77 identifier_init_nonumber: score_block .
   78 identifier_init_nonumber: book_block .
   79 identifier_init_nonumber: bookpart_block .
   80 identifier_init_nonumber: output_def .
   81 identifier_init_nonumber: context_def_spec_block .
   82 identifier_init_nonumber: music_assign .
   82 identifier_init_nonumber: music_assign .
   83 identifier_init_nonumber: pitch_or_music .
   83 identifier_init_nonumber: pitch_or_music .
   84 identifier_init_nonumber: FRACTION .
   85 identifier_init_nonumber: string .
   86 identifier_init_nonumber: embedded_scm .
   86 identifier_init_nonumber: embedded_scm .
   87 identifier_init_nonumber: partial_markup .
   88 identifier_init_nonumber: full_markup_list .
   89 identifier_init_nonumber: context_modification .
   90 identifier_init_nonumber: partial_function "\etc" .
   90 identifier_init_nonumber: partial_function . "\etc"
   91 partial_function_scriptable: MUSIC_FUNCTION . function_arglist_partial
   91 partial_function_scriptable: MUSIC_FUNCTION . function_arglist_partial
   91 partial_function_scriptable: MUSIC_FUNCTION function_arglist_partial .
   92 partial_function_scriptable: EVENT_FUNCTION . function_arglist_partial
   92 partial_function_scriptable: EVENT_FUNCTION . function_arglist_partial
   92 partial_function_scriptable: EVENT_FUNCTION function_arglist_partial .
   93 partial_function_scriptable: SCM_FUNCTION . function_arglist_partial
   93 partial_function_scriptable: SCM_FUNCTION . function_arglist_partial
   93 partial_function_scriptable: SCM_FUNCTION function_arglist_partial .
   94                            | MUSIC_FUNCTION 
                                     . 
                                     "scheme?" 
                                     function_arglist_optional 
                                     partial_function 
   94                            | MUSIC_FUNCTION 
                                     . 
                                     "scheme?" 
                                     function_arglist_optional 
                                     partial_function 
   94 partial_function_scriptable: MUSIC_FUNCTION 
                                     "scheme?" 
                                     . 
                                     function_arglist_optional 
                                     partial_function 
   94 partial_function_scriptable: MUSIC_FUNCTION 
                                     "scheme?" 
                                     . 
                                     function_arglist_optional 
                                     partial_function 
   94 partial_function_scriptable: MUSIC_FUNCTION 
                                     "scheme?" 
                                     function_arglist_optional 
                                     . 
                                     partial_function 
   94 partial_function_scriptable: MUSIC_FUNCTION 
                                     "scheme?" 
                                     function_arglist_optional 
                                     . 
                                     partial_function 
   94 partial_function_scriptable: MUSIC_FUNCTION 
                                     "scheme?" 
                                     function_arglist_optional 
                                     partial_function 
                                     . 
   95                            | EVENT_FUNCTION 
                                     . 
                                     "scheme?" 
                                     function_arglist_optional 
                                     partial_function 
   95                            | EVENT_FUNCTION 
                                     . 
                                     "scheme?" 
                                     function_arglist_optional 
                                     partial_function 
   95 partial_function_scriptable: EVENT_FUNCTION 
                                     "scheme?" 
                                     . 
                                     function_arglist_optional 
                                     partial_function 
   95 partial_function_scriptable: EVENT_FUNCTION 
                                     "scheme?" 
                                     . 
                                     function_arglist_optional 
                                     partial_function 
   95 partial_function_scriptable: EVENT_FUNCTION 
                                     "scheme?" 
                                     function_arglist_optional 
                                     . 
                                     partial_function 
   95 partial_function_scriptable: EVENT_FUNCTION 
                                     "scheme?" 
                                     function_arglist_optional 
                                     . 
                                     partial_function 
   95 partial_function_scriptable: EVENT_FUNCTION 
                                     "scheme?" 
                                     function_arglist_optional 
                                     partial_function 
                                     . 
   96                            | SCM_FUNCTION 
                                     . 
                                     "scheme?" 
                                     function_arglist_optional 
                                     partial_function 
   96                            | SCM_FUNCTION 
                                     . 
                                     "scheme?" 
                                     function_arglist_optional 
                                     partial_function 
   96 partial_function_scriptable: SCM_FUNCTION 
                                     "scheme?" 
                                     . 
                                     function_arglist_optional 
                                     partial_function 
   96 partial_function_scriptable: SCM_FUNCTION 
                                     "scheme?" 
                                     . 
                                     function_arglist_optional 
                                     partial_function 
   96 partial_function_scriptable: SCM_FUNCTION 
                                     "scheme?" 
                                     function_arglist_optional 
                                     . 
                                     partial_function 
   96 partial_function_scriptable: SCM_FUNCTION 
                                     "scheme?" 
                                     function_arglist_optional 
                                     . 
                                     partial_function 
   96 partial_function_scriptable: SCM_FUNCTION 
                                     "scheme?" 
                                     function_arglist_optional 
                                     partial_function 
                                     . 
   97                            | MUSIC_FUNCTION 
                                     . 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
   97                            | MUSIC_FUNCTION 
                                     . 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
   97 partial_function_scriptable: MUSIC_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     . 
                                     function_arglist_nonbackup 
                                     partial_function 
   97 partial_function_scriptable: MUSIC_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     . 
                                     function_arglist_nonbackup 
                                     partial_function 
   97 partial_function_scriptable: MUSIC_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     . 
                                     partial_function 
   97 partial_function_scriptable: MUSIC_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     . 
                                     partial_function 
   97 partial_function_scriptable: MUSIC_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
                                     . 
   97 partial_function_scriptable: MUSIC_FUNCTION 
                                     "optional?" 
                                     . 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
   97 partial_function_scriptable: MUSIC_FUNCTION 
                                     "optional?" 
                                     . 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
   98                            | EVENT_FUNCTION 
                                     . 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
   98                            | EVENT_FUNCTION 
                                     . 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
   98 partial_function_scriptable: EVENT_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     . 
                                     function_arglist_nonbackup 
                                     partial_function 
   98 partial_function_scriptable: EVENT_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     . 
                                     function_arglist_nonbackup 
                                     partial_function 
   98 partial_function_scriptable: EVENT_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     . 
                                     partial_function 
   98 partial_function_scriptable: EVENT_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     . 
                                     partial_function 
   98 partial_function_scriptable: EVENT_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
                                     . 
   98 partial_function_scriptable: EVENT_FUNCTION 
                                     "optional?" 
                                     . 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
   98 partial_function_scriptable: EVENT_FUNCTION 
                                     "optional?" 
                                     . 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
   99                            | SCM_FUNCTION 
                                     . 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
   99                            | SCM_FUNCTION 
                                     . 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
   99 partial_function_scriptable: SCM_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     . 
                                     function_arglist_nonbackup 
                                     partial_function 
   99 partial_function_scriptable: SCM_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     . 
                                     function_arglist_nonbackup 
                                     partial_function 
   99 partial_function_scriptable: SCM_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     . 
                                     partial_function 
   99 partial_function_scriptable: SCM_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     . 
                                     partial_function 
   99 partial_function_scriptable: SCM_FUNCTION 
                                     "optional?" 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
                                     . 
   99 partial_function_scriptable: SCM_FUNCTION 
                                     "optional?" 
                                     . 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
   99 partial_function_scriptable: SCM_FUNCTION 
                                     "optional?" 
                                     . 
                                     "scheme?" 
                                     function_arglist_nonbackup 
                                     partial_function 
  100 partial_function: partial_function_scriptable .
  101 partial_function: "\override" . grob_prop_path '='
  101 partial_function: "\override" . grob_prop_path '='
  101 partial_function: "\override" grob_prop_path '=' .
  101 partial_function: "\override" grob_prop_path '=' .
  101 partial_function: "\override" grob_prop_path . '='
  101 partial_function: "\override" grob_prop_path . '='
  102 partial_function: "\set" . context_prop_spec '='
  102 partial_function: "\set" . context_prop_spec '='
  102 partial_function: "\set" context_prop_spec '=' .
  102 partial_function: "\set" context_prop_spec '=' .
  102 partial_function: "\set" context_prop_spec . '='
  102 partial_function: "\set" context_prop_spec . '='
  103                 | "\override" . grob_prop_path '=' partial_function
  103                 | "\override" . grob_prop_path '=' partial_function
  103                 | "\override" grob_prop_path '=' . partial_function
  103                 | "\override" grob_prop_path '=' . partial_function
  103                 | "\override" grob_prop_path . '=' partial_function
  103                 | "\override" grob_prop_path . '=' partial_function
  103 partial_function: "\override" grob_prop_path '=' partial_function .
  104                 | "\set" . context_prop_spec '=' partial_function
  104                 | "\set" . context_prop_spec '=' partial_function
  104                 | "\set" context_prop_spec '=' . partial_function
  104                 | "\set" context_prop_spec '=' . partial_function
  104                 | "\set" context_prop_spec . '=' partial_function
  104                 | "\set" context_prop_spec . '=' partial_function
  104 partial_function: "\set" context_prop_spec '=' partial_function .
  105 partial_function: script_dir . markup_mode markup_partial_function
  105 partial_function: script_dir . markup_mode markup_partial_function
  105 partial_function: script_dir markup_mode . markup_partial_function
  105 partial_function: script_dir markup_mode . markup_partial_function
  105 partial_function: script_dir markup_mode markup_partial_function .
  106                 | script_dir . partial_function_scriptable
  106                 | script_dir . partial_function_scriptable
  106 partial_function: script_dir partial_function_scriptable .
  107                 | script_dir .
  107                 | script_dir .
  108 context_def_spec_block: "\context" '{' . context_def_spec_body '}'
  108 context_def_spec_block: "\context" '{' context_def_spec_body '}' .
  108 context_def_spec_block: "\context" '{' context_def_spec_body . '}'
  108 context_def_spec_block: "\context" . '{' context_def_spec_body '}'
  109 context_mod_arg: embedded_scm .
  111 context_mod_arg: $@3 . composite_music
  111 context_mod_arg: $@3 composite_music .
  113 context_def_spec_body: context_def_spec_body . context_mod
  113 context_def_spec_body: context_def_spec_body context_mod .
  114                      | context_def_spec_body . context_modification
  114 context_def_spec_body: context_def_spec_body context_modification .
  115                      | context_def_spec_body . context_mod_arg
  115 context_def_spec_body: context_def_spec_body context_mod_arg .
  116 book_block: "\book" '{' . book_body '}'
  116 book_block: "\book" '{' book_body '}' .
  116 book_block: "\book" '{' book_body . '}'
  116 book_block: "\book" . '{' book_body '}'
  118 book_body: BOOK_IDENTIFIER .
  119 book_body: book_body . paper_block
  119 book_body: book_body paper_block .
  120          | book_body . bookpart_block
  120 book_body: book_body bookpart_block .
  121          | book_body . score_block
  121 book_body: book_body score_block .
  122          | book_body . composite_music
  122 book_body: book_body composite_music .
  123          | book_body . full_markup
  123 book_body: book_body full_markup .
  124          | book_body . full_markup_list
  124 book_body: book_body full_markup_list .
  125          | book_body . SCM_TOKEN
  125 book_body: book_body SCM_TOKEN .
  126          | book_body . embedded_scm_active
  126 book_body: book_body embedded_scm_active .
  128          | book_body . $@4 lilypond_header
  128 book_body: book_body $@4 . lilypond_header
  128 book_body: book_body $@4 lilypond_header .
  129          | book_body . error
  129 book_body: book_body error .
  130 bookpart_block: "\bookpart" '{' . bookpart_body '}'
  130 bookpart_block: "\bookpart" '{' bookpart_body '}' .
  130 bookpart_block: "\bookpart" '{' bookpart_body . '}'
  130 bookpart_block: "\bookpart" . '{' bookpart_body '}'
  132 bookpart_body: BOOK_IDENTIFIER .
  133 bookpart_body: bookpart_body . paper_block
  133 bookpart_body: bookpart_body paper_block .
  134              | bookpart_body . score_block
  134 bookpart_body: bookpart_body score_block .
  135              | bookpart_body . composite_music
  135 bookpart_body: bookpart_body composite_music .
  136              | bookpart_body . full_markup
  136 bookpart_body: bookpart_body full_markup .
  137              | bookpart_body . full_markup_list
  137 bookpart_body: bookpart_body full_markup_list .
  138              | bookpart_body . SCM_TOKEN
  138 bookpart_body: bookpart_body SCM_TOKEN .
  139              | bookpart_body . embedded_scm_active
  139 bookpart_body: bookpart_body embedded_scm_active .
  141              | bookpart_body . $@5 lilypond_header
  141 bookpart_body: bookpart_body $@5 . lilypond_header
  141 bookpart_body: bookpart_body $@5 lilypond_header .
  142              | bookpart_body . error
  142 bookpart_body: bookpart_body error .
  143 score_block: "\score" '{' . score_body '}'
  143 score_block: "\score" '{' score_body '}' .
  143 score_block: "\score" '{' score_body . '}'
  143 score_block: "\score" . '{' score_body '}'
  144 score_body: score_items .
  145 score_body: score_body . error
  145 score_body: score_body . error
  145 score_body: score_body . error
  145 score_body: score_body error .
  146 score_item: embedded_scm .
  147 score_item: music .
  148 score_item: output_def .
  150 score_items: score_items . score_item
  150 score_items: score_items score_item .
  152            | score_items . $@6 lilypond_header
  152 score_items: score_items $@6 . lilypond_header
  152 score_items: score_items $@6 lilypond_header .
  153 paper_block: output_def .
  154 output_def: output_def_body '}' .
  154 output_def: output_def_body . '}'
  155 output_def_head: "\paper" .
  156 output_def_head: "\midi" .
  157 output_def_head: "\layout" .
  158 output_def_head_with_mode_switch: output_def_head .
  159 music_or_context_def: music_assign .
  160 music_or_context_def: context_def_spec_block .
  161 output_def_body: output_def_head_with_mode_switch '{' .
  161 output_def_body: output_def_head_with_mode_switch . '{'
  162 output_def_body: output_def_body . assignment
  162 output_def_body: output_def_body assignment .
  163                | output_def_body . embedded_scm_active
  163 output_def_body: output_def_body embedded_scm_active .
  164                | output_def_body . SCM_TOKEN
  164 output_def_body: output_def_body SCM_TOKEN .
  166                | output_def_body . $@7 music_or_context_def
  166 output_def_body: output_def_body $@7 . music_or_context_def
  166 output_def_body: output_def_body $@7 music_or_context_def .
  167                | output_def_body . error
  167 output_def_body: output_def_body error .
  168 tempo_event: "\tempo" . steno_duration '=' tempo_range
  168 tempo_event: "\tempo" steno_duration '=' . tempo_range
  168 tempo_event: "\tempo" steno_duration '=' tempo_range .
  168 tempo_event: "\tempo" steno_duration . '=' tempo_range
  169            | "\tempo" . text steno_duration '=' tempo_range
  169 tempo_event: "\tempo" text . steno_duration '=' tempo_range
  169 tempo_event: "\tempo" text steno_duration '=' . tempo_range
  169 tempo_event: "\tempo" text steno_duration '=' tempo_range .
  169 tempo_event: "\tempo" text steno_duration . '=' tempo_range
  170            | "\tempo" . text
  170            | "\tempo" text .
  172 music_list: music_list . music_embedded
  172 music_list: music_list . music_embedded
  172 music_list: music_list . music_embedded
  172 music_list: music_list music_embedded .
  173           | music_list . error
  173           | music_list . error
  173           | music_list . error
  173 music_list: music_list error .
  174 braced_music_list: '{' . music_list '}'
  174 braced_music_list: '{' music_list '}' .
  174 braced_music_list: '{' music_list . '}'
  175 music: music_assign .
  175 music: music_assign .
  176 music: lyric_element_music .
  177 music: pitch_as_music .
  178 pitch_as_music: pitch_or_music .
  178 pitch_as_music: pitch_or_music .
  179 music_embedded: music .
  180 music_embedded: music_embedded_backup .
  181               | music_embedded_backup 
                        . 
                        "(backed-up?)" 
                        lyric_element_music 
  181 music_embedded: music_embedded_backup 
                        "(backed-up?)" 
                        . 
                        lyric_element_music 
  181 music_embedded: music_embedded_backup 
                        "(backed-up?)" 
                        lyric_element_music 
                        . 
  182 music_embedded: multiplied_duration . post_events
  182 music_embedded: multiplied_duration . post_events
  182 music_embedded: multiplied_duration post_events .
  183 music_embedded_backup: embedded_scm .
  183 music_embedded_backup: embedded_scm .
  184 music_assign: simple_music .
  185 music_assign: composite_music .
  186 repeated_music: "\repeat" . simple_string unsigned_number music
  186 repeated_music: "\repeat" simple_string . unsigned_number music
  186 repeated_music: "\repeat" simple_string unsigned_number . music
  186 repeated_music: "\repeat" simple_string unsigned_number music .
  187               | "\repeat" 
                        . 
                        simple_string 
                        unsigned_number 
                        music 
                        "\alternative" 
                        braced_music_list 
  187               | "\repeat" 
                        simple_string 
                        . 
                        unsigned_number 
                        music 
                        "\alternative" 
                        braced_music_list 
  187               | "\repeat" 
                        simple_string 
                        unsigned_number 
                        . 
                        music 
                        "\alternative" 
                        braced_music_list 
  187               | "\repeat" 
                        simple_string 
                        unsigned_number 
                        music 
                        . 
                        "\alternative" 
                        braced_music_list 
  187 repeated_music: "\repeat" 
                        simple_string 
                        unsigned_number 
                        music 
                        "\alternative" 
                        . 
                        braced_music_list 
  187 repeated_music: "\repeat" 
                        simple_string 
                        unsigned_number 
                        music 
                        "\alternative" 
                        braced_music_list 
                        . 
  188 sequential_music: "\sequential" . braced_music_list
  188 sequential_music: "\sequential" braced_music_list .
  189 sequential_music: braced_music_list .
  190 simultaneous_music: "\simultaneous" . braced_music_list
  190 simultaneous_music: "\simultaneous" braced_music_list .
  191 simultaneous_music: "<<" . music_list ">>"
  191 simultaneous_music: "<<" music_list ">>" .
  191 simultaneous_music: "<<" music_list . ">>"
  192 simple_music: event_chord .
  193 simple_music: music_property_def .
  194 simple_music: context_change .
  196 context_modification: "\with" $@8 '{' . context_mod_list '}'
  196 context_modification: "\with" $@8 '{' context_mod_list '}' .
  196 context_modification: "\with" $@8 '{' context_mod_list . '}'
  196 context_modification: "\with" $@8 . '{' context_mod_list '}'
  196 context_modification: "\with" . $@8 '{' context_mod_list '}'
  197                     | "\with" . context_modification_arg
  197 context_modification: "\with" context_modification_arg .
  198 context_modification_arg: embedded_scm .
  199 context_modification_arg: MUSIC_IDENTIFIER .
  200 optional_context_mods: context_modification_mods_list .
  202 context_modification_mods_list: context_modification_mods_list 
                                        . 
                                        context_modification 
  202 context_modification_mods_list: context_modification_mods_list 
                                        context_modification 
                                        . 
  204 context_mod_list: context_mod_list . context_mod
  204 context_mod_list: context_mod_list context_mod .
  205                 | context_mod_list . context_mod_arg
  205 context_mod_list: context_mod_list context_mod_arg .
  206 context_prefix: "\context" . symbol optional_id optional_context_mods
  206 context_prefix: "\context" . symbol optional_id optional_context_mods
  206 context_prefix: "\context" symbol . optional_id optional_context_mods
  206 context_prefix: "\context" symbol optional_id . optional_context_mods
  206 context_prefix: "\context" symbol optional_id optional_context_mods .
  207 context_prefix: "\new" . symbol optional_id optional_context_mods
  207 context_prefix: "\new" symbol . optional_id optional_context_mods
  207 context_prefix: "\new" symbol optional_id . optional_context_mods
  207 context_prefix: "\new" symbol optional_id optional_context_mods .
  208 new_lyrics: "\addlyrics" . optional_context_mods lyric_mode_music
  208 new_lyrics: "\addlyrics" optional_context_mods . lyric_mode_music
  208 new_lyrics: "\addlyrics" optional_context_mods lyric_mode_music .
  209 new_lyrics: new_lyrics 
                    "\addlyrics" 
                    . 
                    optional_context_mods 
                    lyric_mode_music 
  209 new_lyrics: new_lyrics 
                    "\addlyrics" 
                    optional_context_mods 
                    . 
                    lyric_mode_music 
  209 new_lyrics: new_lyrics 
                    "\addlyrics" 
                    optional_context_mods 
                    lyric_mode_music 
                    . 
  209 new_lyrics: new_lyrics 
                    . 
                    "\addlyrics" 
                    optional_context_mods 
                    lyric_mode_music 
  209 new_lyrics: new_lyrics 
                    . 
                    "\addlyrics" 
                    optional_context_mods 
                    lyric_mode_music 
  210 basic_music: music_function_call .
  211 basic_music: repeated_music .
  212 basic_music: music_bare .
  213 basic_music: "\lyricsto" . simple_string lyric_mode_music
  213 basic_music: "\lyricsto" simple_string . lyric_mode_music
  213 basic_music: "\lyricsto" simple_string lyric_mode_music .
  214            | "\lyricsto" . symbol '=' simple_string lyric_mode_music
  214 basic_music: "\lyricsto" symbol '=' . simple_string lyric_mode_music
  214 basic_music: "\lyricsto" symbol '=' simple_string . lyric_mode_music
  214 basic_music: "\lyricsto" symbol '=' simple_string lyric_mode_music .
  214 basic_music: "\lyricsto" symbol . '=' simple_string lyric_mode_music
  215 contextable_music: basic_music .
  216 contextable_music: pitch_as_music .
  217 contextable_music: event_chord .
  218 contexted_basic_music: context_prefix . contextable_music new_lyrics
  218 contexted_basic_music: context_prefix contextable_music . new_lyrics
  218 contexted_basic_music: context_prefix contextable_music new_lyrics .
  219                      | context_prefix . contextable_music
  219                      | context_prefix contextable_music .
  220                      | context_prefix . contexted_basic_music
  220 contexted_basic_music: context_prefix contexted_basic_music .
  221 composite_music: basic_music .
  222 composite_music: contexted_basic_music .
  223                | basic_music . new_lyrics
  223 composite_music: basic_music new_lyrics .
  224 music_bare: mode_changed_music .
  225 music_bare: MUSIC_IDENTIFIER .
  226 music_bare: grouped_music_list .
  227 grouped_music_list: simultaneous_music .
  228 grouped_music_list: sequential_music .
  229 symbol_list_arg: SYMBOL_LIST .
  230                | SYMBOL_LIST . '.' symbol_list_rev
  230 symbol_list_arg: SYMBOL_LIST '.' . symbol_list_rev
  230 symbol_list_arg: SYMBOL_LIST '.' symbol_list_rev .
  231                | SYMBOL_LIST . ',' symbol_list_rev
  231 symbol_list_arg: SYMBOL_LIST ',' . symbol_list_rev
  231 symbol_list_arg: SYMBOL_LIST ',' symbol_list_rev .
  232 symbol_list_rev: symbol_list_part .
  233 symbol_list_rev: symbol_list_rev '.' . symbol_list_part
  233 symbol_list_rev: symbol_list_rev '.' symbol_list_part .
  233 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
  233 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
  233 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
  233 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
  233 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
  233 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
  234                | symbol_list_rev . ',' symbol_list_part
  234                | symbol_list_rev . ',' symbol_list_part
  234                | symbol_list_rev . ',' symbol_list_part
  234                | symbol_list_rev . ',' symbol_list_part
  234                | symbol_list_rev . ',' symbol_list_part
  234                | symbol_list_rev . ',' symbol_list_part
  234 symbol_list_rev: symbol_list_rev ',' . symbol_list_part
  234 symbol_list_rev: symbol_list_rev ',' symbol_list_part .
  235 symbol_list_part: symbol_list_part_bare .
  236 symbol_list_part: embedded_scm_bare .
  237 symbol_list_element: STRING .
  237 symbol_list_element: STRING .
  238 symbol_list_element: UNSIGNED .
  238 symbol_list_element: UNSIGNED .
  239 symbol_list_part_bare: SYMBOL .
  239 symbol_list_part_bare: SYMBOL .
  240 symbol_list_part_bare: symbol_list_element .
  241 function_arglist_nonbackup: function_arglist_common .
  242 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
                                    . 
  242 function_arglist_nonbackup: "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
  242 function_arglist_nonbackup: "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    post_event_nofinger 
  243                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
  243                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
  243 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    . 
                                    UNSIGNED 
  243 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    UNSIGNED 
                                    . 
  244                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    . 
                                    REAL 
  244                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
  244                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
  244 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    REAL 
                                    . 
  245                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    . 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
  245 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    '-' 
                                    NUMBER_IDENTIFIER 
                                    . 
  246                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
  246                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
  246 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    embedded_scm_arg 
                                    . 
  247                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    bare_number_common 
  247                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    bare_number_common 
  247                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    bare_number_common 
  247                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    bare_number_common 
  247                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    bare_number_common 
  247                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    bare_number_common 
  247                           | "optional?" 
                                    "scheme?" 
                                    . 
                                    function_arglist_nonbackup 
                                    bare_number_common 
  247                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    bare_number_common 
  247                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    bare_number_common 
  247                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    bare_number_common 
  247                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    bare_number_common 
  247                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    bare_number_common 
  247                           | "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    . 
                                    bare_number_common 
  247                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    bare_number_common 
  247                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    bare_number_common 
  247                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    bare_number_common 
  247                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    bare_number_common 
  247                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    bare_number_common 
  247                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    bare_number_common 
  247                           | "optional?" 
                                    . 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    bare_number_common 
  247 function_arglist_nonbackup: "optional?" 
                                    "scheme?" 
                                    function_arglist_nonbackup 
                                    bare_number_common 
                                    . 
  248 function_arglist_nonbackup: function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    . 
                                    pitch_or_music 
  248 function_arglist_nonbackup: function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    pitch_or_music 
                                    . 
  248 function_arglist_nonbackup: function_arglist_nonbackup_reparse 
                                    . 
                                    "(reparsed?)" 
                                    pitch_or_music 
  249                           | function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    . 
                                    multiplied_duration 
  249                           | function_arglist_nonbackup_reparse 
                                    . 
                                    "(reparsed?)" 
                                    multiplied_duration 
  249 function_arglist_nonbackup: function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    multiplied_duration 
                                    . 
  250                           | function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    . 
                                    reparsed_rhythm 
  250                           | function_arglist_nonbackup_reparse 
                                    . 
                                    "(reparsed?)" 
                                    reparsed_rhythm 
  250 function_arglist_nonbackup: function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    reparsed_rhythm 
                                    . 
  251                           | function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    . 
                                    bare_number_common 
  251                           | function_arglist_nonbackup_reparse 
                                    . 
                                    "(reparsed?)" 
                                    bare_number_common 
  251 function_arglist_nonbackup: function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    bare_number_common 
                                    . 
  252                           | function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    . 
                                    SCM_ARG 
  252                           | function_arglist_nonbackup_reparse 
                                    . 
                                    "(reparsed?)" 
                                    SCM_ARG 
  252 function_arglist_nonbackup: function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    SCM_ARG 
                                    . 
  253                           | function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    . 
                                    lyric_element_music 
  253                           | function_arglist_nonbackup_reparse 
                                    . 
                                    "(reparsed?)" 
                                    lyric_element_music 
  253 function_arglist_nonbackup: function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    lyric_element_music 
                                    . 
  254                           | function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    . 
                                    symbol_list_arg 
  254                           | function_arglist_nonbackup_reparse 
                                    . 
                                    "(reparsed?)" 
                                    symbol_list_arg 
  254 function_arglist_nonbackup: function_arglist_nonbackup_reparse 
                                    "(reparsed?)" 
                                    symbol_list_arg 
                                    . 
  255 reparsed_rhythm: DURATION_ARG . dots multipliers post_events
  255 reparsed_rhythm: DURATION_ARG dots . multipliers post_events
  255 reparsed_rhythm: DURATION_ARG dots multipliers . post_events
  255 reparsed_rhythm: DURATION_ARG dots multipliers post_events .
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
                                            . 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
  256 function_arglist_nonbackup_reparse: "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SCM_IDENTIFIER 
  257                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            pitch 
  257                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            pitch 
  257                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            pitch 
  257                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            pitch 
  257                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            pitch 
  257                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            pitch 
  257                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            pitch 
  257                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            pitch 
  257                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            pitch 
  257                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            pitch 
  257                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            pitch 
  257                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            pitch 
  257                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            pitch 
  257                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            pitch 
  257                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            pitch 
  257                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            pitch 
  257                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            pitch 
  257                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            pitch 
  257                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            pitch 
  257                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            pitch 
  257 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            pitch 
                                            . 
  258                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
  258                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
  258 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            steno_tonic_pitch 
                                            . 
  259                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            STRING 
  259                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            STRING 
  259                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            STRING 
  259                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            STRING 
  259                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            STRING 
  259                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            STRING 
  259                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            STRING 
  259                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            STRING 
  259                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            STRING 
  259                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            STRING 
  259                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            STRING 
  259                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            STRING 
  259                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            STRING 
  259                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            STRING 
  259                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            STRING 
  259                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            STRING 
  259                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            STRING 
  259                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            STRING 
  259                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            STRING 
  259                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            STRING 
  259 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            STRING 
                                            . 
  260                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            SYMBOL 
  260                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            SYMBOL 
  260                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            SYMBOL 
  260                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            SYMBOL 
  260                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            SYMBOL 
  260                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            SYMBOL 
  260                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            SYMBOL 
  260                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            SYMBOL 
  260                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            SYMBOL 
  260                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            SYMBOL 
  260                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            SYMBOL 
  260                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            SYMBOL 
  260                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            SYMBOL 
  260                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SYMBOL 
  260                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SYMBOL 
  260                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SYMBOL 
  260                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SYMBOL 
  260                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SYMBOL 
  260                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SYMBOL 
  260                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SYMBOL 
  260 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            SYMBOL 
                                            . 
  261                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            full_markup 
  261                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            full_markup 
  261                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            full_markup 
  261                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            full_markup 
  261                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            full_markup 
  261                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            full_markup 
  261                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            full_markup 
  261                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            full_markup 
  261                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            full_markup 
  261                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            full_markup 
  261                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            full_markup 
  261                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            full_markup 
  261                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            full_markup 
  261                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            full_markup 
  261                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            full_markup 
  261                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            full_markup 
  261                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            full_markup 
  261                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            full_markup 
  261                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            full_markup 
  261                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            full_markup 
  261 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            full_markup 
                                            . 
  262                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
  262                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
  262 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            UNSIGNED 
                                            . 
  263                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            "scheme?" 
                                            . 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            . 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 
  263                                   | "optional?" 
                                            . 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 
  263 function_arglist_nonbackup_reparse: "optional?" 
                                            "scheme?" 
                                            function_arglist_nonbackup 
                                            DURATION_IDENTIFIER 
                                            . 
  264 function_arglist_backup: function_arglist_common .
  265 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 embedded_scm_arg 
  265 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 embedded_scm_arg 
  265 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 embedded_scm_arg 
  265 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 embedded_scm_arg 
  265 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 embedded_scm_arg 
  265 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 embedded_scm_arg 
  265 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 embedded_scm_arg 
                                 . 
  265 function_arglist_backup: "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 embedded_scm_arg 
  265 function_arglist_backup: "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 embedded_scm_arg 
  265 function_arglist_backup: "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 embedded_scm_arg 
  265 function_arglist_backup: "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 embedded_scm_arg 
  266                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 post_event_nofinger 
  266                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 post_event_nofinger 
  266                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 post_event_nofinger 
  266                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 post_event_nofinger 
  266                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 post_event_nofinger 
  266                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 post_event_nofinger 
  266                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 post_event_nofinger 
  266                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 post_event_nofinger 
  266                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 post_event_nofinger 
  266                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 post_event_nofinger 
  266 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 post_event_nofinger 
                                 . 
  267                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 pitch 
  267                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 pitch 
  267                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 pitch 
  267                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 pitch 
  267                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 pitch 
  267                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 pitch 
  267                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 pitch 
  267                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 pitch 
  267                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 pitch 
  267                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 pitch 
  267 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 pitch 
                                 . 
  268                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 steno_tonic_pitch 
  268                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 steno_tonic_pitch 
  268                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 steno_tonic_pitch 
  268                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 steno_tonic_pitch 
  268                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 steno_tonic_pitch 
  268                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 steno_tonic_pitch 
  268                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 steno_tonic_pitch 
  268                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 steno_tonic_pitch 
  268                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 steno_tonic_pitch 
  268                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 steno_tonic_pitch 
  268 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 steno_tonic_pitch 
                                 . 
  269                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 full_markup 
  269                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 full_markup 
  269                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 full_markup 
  269                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 full_markup 
  269                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 full_markup 
  269                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 full_markup 
  269                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 full_markup 
  269                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 full_markup 
  269                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 full_markup 
  269                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 full_markup 
  269 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 full_markup 
                                 . 
  270                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 UNSIGNED 
  270                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 UNSIGNED 
  270                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 UNSIGNED 
  270                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 UNSIGNED 
  270                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 UNSIGNED 
  270                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 UNSIGNED 
  270                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 UNSIGNED 
  270                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 UNSIGNED 
  270                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 UNSIGNED 
  270                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 UNSIGNED 
  270 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 UNSIGNED 
                                 . 
  271                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 REAL 
  271                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 REAL 
  271                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 REAL 
  271                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 REAL 
  271                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 REAL 
  271                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 REAL 
  271                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 REAL 
  271                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 REAL 
  271                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 REAL 
  271                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 REAL 
  271 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 REAL 
                                 . 
  272                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 NUMBER_IDENTIFIER 
  272                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 NUMBER_IDENTIFIER 
  272                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 NUMBER_IDENTIFIER 
  272                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 NUMBER_IDENTIFIER 
  272                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 NUMBER_IDENTIFIER 
  272                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 NUMBER_IDENTIFIER 
  272                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 NUMBER_IDENTIFIER 
  272                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 NUMBER_IDENTIFIER 
  272                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 NUMBER_IDENTIFIER 
  272                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 NUMBER_IDENTIFIER 
  272 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 NUMBER_IDENTIFIER 
                                 . 
  273                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 '-' 
                                 UNSIGNED 
  273                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 '-' 
                                 UNSIGNED 
  273                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 '-' 
                                 UNSIGNED 
  273                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 '-' 
                                 UNSIGNED 
  273                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 '-' 
                                 UNSIGNED 
  273                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 '-' 
                                 UNSIGNED 
  273                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 UNSIGNED 
  273                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 UNSIGNED 
  273                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 UNSIGNED 
  273                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 UNSIGNED 
  273 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 . 
                                 UNSIGNED 
  273 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 UNSIGNED 
                                 . 
  274                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 '-' 
                                 REAL 
  274                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 '-' 
                                 REAL 
  274                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 '-' 
                                 REAL 
  274                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 '-' 
                                 REAL 
  274                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 . 
                                 REAL 
  274                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 '-' 
                                 REAL 
  274                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 '-' 
                                 REAL 
  274                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 REAL 
  274                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 REAL 
  274                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 REAL 
  274                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 REAL 
  274 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 REAL 
                                 . 
  275                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  275                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  275                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  275                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  275                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 . 
                                 NUMBER_IDENTIFIER 
  275                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  275                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  275                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  275                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  275                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  275                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  275 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 '-' 
                                 NUMBER_IDENTIFIER 
                                 . 
  276                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 DURATION_IDENTIFIER 
  276                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 DURATION_IDENTIFIER 
  276                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 DURATION_IDENTIFIER 
  276                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 DURATION_IDENTIFIER 
  276                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 DURATION_IDENTIFIER 
  276                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 DURATION_IDENTIFIER 
  276                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 DURATION_IDENTIFIER 
  276                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 DURATION_IDENTIFIER 
  276                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 DURATION_IDENTIFIER 
  276                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 DURATION_IDENTIFIER 
  276 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 DURATION_IDENTIFIER 
                                 . 
  277                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 SCM_IDENTIFIER 
  277                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 SCM_IDENTIFIER 
  277                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 SCM_IDENTIFIER 
  277                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 SCM_IDENTIFIER 
  277                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 SCM_IDENTIFIER 
  277                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 SCM_IDENTIFIER 
  277                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 SCM_IDENTIFIER 
  277                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 SCM_IDENTIFIER 
  277                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 SCM_IDENTIFIER 
  277                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 SCM_IDENTIFIER 
  277 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 SCM_IDENTIFIER 
                                 . 
  278                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 STRING 
  278                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 STRING 
  278                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 STRING 
  278                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 STRING 
  278                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 STRING 
  278                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 STRING 
  278                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 STRING 
  278                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 STRING 
  278                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 STRING 
  278                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 STRING 
  278 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 STRING 
                                 . 
  279                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 SYMBOL 
  279                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 SYMBOL 
  279                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 SYMBOL 
  279                        | "optional?" 
                                 "scheme?" 
                                 . 
                                 function_arglist_backup 
                                 SYMBOL 
  279                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 SYMBOL 
  279                        | "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 . 
                                 SYMBOL 
  279                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 SYMBOL 
  279                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 SYMBOL 
  279                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 SYMBOL 
  279                        | "optional?" 
                                 . 
                                 "scheme?" 
                                 function_arglist_backup 
                                 SYMBOL 
  279 function_arglist_backup: "optional?" 
                                 "scheme?" 
                                 function_arglist_backup 
                                 SYMBOL 
                                 . 
  280                        | function_arglist_backup 
                                 . 
                                 "(reparsed?)" 
                                 pitch_or_music 
  280                        | function_arglist_backup 
                                 . 
                                 "(reparsed?)" 
                                 pitch_or_music 
  280 function_arglist_backup: function_arglist_backup 
                                 "(reparsed?)" 
                                 . 
                                 pitch_or_music 
  280 function_arglist_backup: function_arglist_backup 
                                 "(reparsed?)" 
                                 pitch_or_music 
                                 . 
  280 function_arglist_backup: function_arglist_backup 
                                 . 
                                 "(reparsed?)" 
                                 pitch_or_music 
  281                        | function_arglist_backup 
                                 "(reparsed?)" 
                                 . 
                                 bare_number_common 
  281                        | function_arglist_backup 
                                 . 
                                 "(reparsed?)" 
                                 bare_number_common 
  281                        | function_arglist_backup 
                                 . 
                                 "(reparsed?)" 
                                 bare_number_common 
  281                        | function_arglist_backup 
                                 . 
                                 "(reparsed?)" 
                                 bare_number_common 
  281 function_arglist_backup: function_arglist_backup 
                                 "(reparsed?)" 
                                 bare_number_common 
                                 . 
  282                        | function_arglist_backup 
                                 "(reparsed?)" 
                                 . 
                                 multiplied_duration 
  282                        | function_arglist_backup 
                                 . 
                                 "(reparsed?)" 
                                 multiplied_duration 
  282                        | function_arglist_backup 
                                 . 
                                 "(reparsed?)" 
                                 multiplied_duration 
  282                        | function_arglist_backup 
                                 . 
                                 "(reparsed?)" 
                                 multiplied_duration 
  282 function_arglist_backup: function_arglist_backup 
                                 "(reparsed?)" 
                                 multiplied_duration 
                                 . 
  283                        | function_arglist_backup 
                                 "(reparsed?)" 
                                 . 
                                 reparsed_rhythm 
  283                        | function_arglist_backup 
                                 . 
                                 "(reparsed?)" 
                                 reparsed_rhythm 
  283                        | function_arglist_backup 
                                 . 
                                 "(reparsed?)" 
                                 reparsed_rhythm 
  283                        | function_arglist_backup 
                                 . 
                                 "(reparsed?)" 
                                 reparsed_rhythm 
  283 function_arglist_backup: function_arglist_backup 
                                 "(reparsed?)" 
                                 reparsed_rhythm 
                                 . 
  284                        | function_arglist_backup 
                                 "(reparsed?)" 
                                 . 
                                 symbol_list_arg 
  284                        | function_arglist_backup 
                                 . 
                                 "(reparsed?)" 
                                 symbol_list_arg 
  284                        | function_arglist_backup 
                                 . 
                                 "(reparsed?)" 
                                 symbol_list_arg 
  284                        | function_arglist_backup 
                                 . 
                                 "(reparsed?)" 
                                 symbol_list_arg 
  284 function_arglist_backup: function_arglist_backup 
                                 "(reparsed?)" 
                                 symbol_list_arg 
                                 . 
  285 function_arglist: function_arglist_nonbackup .
  286 function_arglist: "optional?" 
                          "scheme?" 
                          . 
                          function_arglist_skip_nonbackup 
                          "\default" 
  286 function_arglist: "optional?" 
                          "scheme?" 
                          . 
                          function_arglist_skip_nonbackup 
                          "\default" 
  286 function_arglist: "optional?" 
                          "scheme?" 
                          . 
                          function_arglist_skip_nonbackup 
                          "\default" 
  286 function_arglist: "optional?" 
                          "scheme?" 
                          . 
                          function_arglist_skip_nonbackup 
                          "\default" 
  286 function_arglist: "optional?" 
                          "scheme?" 
                          function_arglist_skip_nonbackup 
                          "\default" 
                          . 
  286 function_arglist: "optional?" 
                          "scheme?" 
                          function_arglist_skip_nonbackup 
                          . 
                          "\default" 
  286 function_arglist: "optional?" 
                          . 
                          "scheme?" 
                          function_arglist_skip_nonbackup 
                          "\default" 
  286 function_arglist: "optional?" 
                          . 
                          "scheme?" 
                          function_arglist_skip_nonbackup 
                          "\default" 
  286 function_arglist: "optional?" 
                          . 
                          "scheme?" 
                          function_arglist_skip_nonbackup 
                          "\default" 
  286 function_arglist: "optional?" 
                          . 
                          "scheme?" 
                          function_arglist_skip_nonbackup 
                          "\default" 
  287 function_arglist_skip_nonbackup: function_arglist_nonbackup .
  287 function_arglist_skip_nonbackup: function_arglist_nonbackup .
  287 function_arglist_skip_nonbackup: function_arglist_nonbackup .
  287 function_arglist_skip_nonbackup: function_arglist_nonbackup .
  287 function_arglist_skip_nonbackup: function_arglist_nonbackup .
  288 function_arglist_skip_nonbackup: "optional?" 
                                         "scheme?" 
                                         . 
                                         function_arglist_skip_nonbackup 
  288 function_arglist_skip_nonbackup: "optional?" 
                                         "scheme?" 
                                         . 
                                         function_arglist_skip_nonbackup 
  288 function_arglist_skip_nonbackup: "optional?" 
                                         "scheme?" 
                                         function_arglist_skip_nonbackup 
                                         . 
  288 function_arglist_skip_nonbackup: "optional?" 
                                         . 
                                         "scheme?" 
                                         function_arglist_skip_nonbackup 
  288 function_arglist_skip_nonbackup: "optional?" 
                                         . 
                                         "scheme?" 
                                         function_arglist_skip_nonbackup 
  289 function_arglist_partial: "scheme?" . function_arglist_optional
  289 function_arglist_partial: "scheme?" . function_arglist_optional
  289 function_arglist_partial: "scheme?" . function_arglist_optional
  289 function_arglist_partial: "scheme?" . function_arglist_optional
  289 function_arglist_partial: "scheme?" . function_arglist_optional
  289 function_arglist_partial: "scheme?" . function_arglist_optional
  289 function_arglist_partial: "scheme?" . function_arglist_optional
  289 function_arglist_partial: "scheme?" function_arglist_optional .
  289 function_arglist_partial: "scheme?" function_arglist_optional .
  289 function_arglist_partial: "scheme?" function_arglist_optional .
  289 function_arglist_partial: "scheme?" function_arglist_optional .
  289 function_arglist_partial: "scheme?" function_arglist_optional .
  289 function_arglist_partial: "scheme?" function_arglist_optional .
  289 function_arglist_partial: "scheme?" function_arglist_optional .
  290                         | "scheme?" . function_arglist_partial_optional
  290                         | "scheme?" . function_arglist_partial_optional
  290                         | "scheme?" . function_arglist_partial_optional
  290                         | "scheme?" . function_arglist_partial_optional
  290                         | "scheme?" . function_arglist_partial_optional
  290                         | "scheme?" . function_arglist_partial_optional
  290                         | "scheme?" . function_arglist_partial_optional
  290 function_arglist_partial: "scheme?" function_arglist_partial_optional .
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_nonbackup 
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_nonbackup 
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_nonbackup 
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_nonbackup 
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_nonbackup 
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_nonbackup 
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_nonbackup 
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_nonbackup 
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  function_arglist_nonbackup 
                                  . 
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  function_arglist_nonbackup 
                                  . 
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  function_arglist_nonbackup 
                                  . 
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  function_arglist_nonbackup 
                                  . 
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  function_arglist_nonbackup 
                                  . 
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  function_arglist_nonbackup 
                                  . 
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  function_arglist_nonbackup 
                                  . 
  291 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  function_arglist_nonbackup 
                                  . 
  291 function_arglist_partial: "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_nonbackup 
  291 function_arglist_partial: "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_nonbackup 
  291 function_arglist_partial: "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_nonbackup 
  291 function_arglist_partial: "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_nonbackup 
  291 function_arglist_partial: "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_nonbackup 
  291 function_arglist_partial: "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_nonbackup 
  291 function_arglist_partial: "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_nonbackup 
  291 function_arglist_partial: "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_nonbackup 
  292                         | "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_partial 
  292                         | "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_partial 
  292                         | "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_partial 
  292                         | "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_partial 
  292                         | "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_partial 
  292                         | "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_partial 
  292                         | "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_partial 
  292                         | "optional?" 
                                  "scheme?" 
                                  . 
                                  function_arglist_partial 
  292                         | "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_partial 
  292                         | "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_partial 
  292                         | "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_partial 
  292                         | "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_partial 
  292                         | "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_partial 
  292                         | "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_partial 
  292                         | "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_partial 
  292                         | "optional?" 
                                  . 
                                  "scheme?" 
                                  function_arglist_partial 
  292 function_arglist_partial: "optional?" 
                                  "scheme?" 
                                  function_arglist_partial 
                                  . 
  293 function_arglist_partial_optional: "scheme?" 
                                           . 
                                           function_arglist_optional 
  293 function_arglist_partial_optional: "scheme?" 
                                           function_arglist_optional 
                                           . 
  294                                  | "scheme?" 
                                           . 
                                           function_arglist_partial_optional 
  294 function_arglist_partial_optional: "scheme?" 
                                           function_arglist_partial_optional 
                                           . 
  295 function_arglist_partial_optional: "optional?" 
                                           "scheme?" 
                                           . 
                                           function_arglist_backup 
  295 function_arglist_partial_optional: "optional?" 
                                           "scheme?" 
                                           . 
                                           function_arglist_backup 
  295 function_arglist_partial_optional: "optional?" 
                                           "scheme?" 
                                           function_arglist_backup 
                                           . 
  295 function_arglist_partial_optional: "optional?" 
                                           . 
                                           "scheme?" 
                                           function_arglist_backup 
  295 function_arglist_partial_optional: "optional?" 
                                           . 
                                           "scheme?" 
                                           function_arglist_backup 
  296                                  | "optional?" 
                                           "scheme?" 
                                           . 
                                           function_arglist_partial_optional 
  296                                  | "optional?" 
                                           "scheme?" 
                                           . 
                                           function_arglist_partial_optional 
  296                                  | "optional?" 
                                           . 
                                           "scheme?" 
                                           function_arglist_partial_optional 
  296                                  | "optional?" 
                                           . 
                                           "scheme?" 
                                           function_arglist_partial_optional 
  296 function_arglist_partial_optional: "optional?" 
                                           "scheme?" 
                                           function_arglist_partial_optional 
                                           . 
  297 function_arglist_common: EXPECT_NO_MORE_ARGS .
  298 function_arglist_common: "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 embedded_scm_arg 
  298 function_arglist_common: "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 embedded_scm_arg 
  298 function_arglist_common: "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 embedded_scm_arg 
  298 function_arglist_common: "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 embedded_scm_arg 
  298 function_arglist_common: "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 embedded_scm_arg 
  298 function_arglist_common: "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 embedded_scm_arg 
  298 function_arglist_common: "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 embedded_scm_arg 
  298 function_arglist_common: "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 embedded_scm_arg 
  298 function_arglist_common: "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 embedded_scm_arg 
  298 function_arglist_common: "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 embedded_scm_arg 
  298 function_arglist_common: "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 embedded_scm_arg 
  298 function_arglist_common: "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 embedded_scm_arg 
  298 function_arglist_common: "scheme?" 
                                 function_arglist_optional 
                                 embedded_scm_arg 
                                 . 
  299                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 bare_number_common 
  299                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 bare_number_common 
  299                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 bare_number_common 
  299                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 bare_number_common 
  299                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 bare_number_common 
  299                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 bare_number_common 
  299                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 bare_number_common 
  299                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 bare_number_common 
  299                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 bare_number_common 
  299                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 bare_number_common 
  299                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 bare_number_common 
  299                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 bare_number_common 
  299 function_arglist_common: "scheme?" 
                                 function_arglist_optional 
                                 bare_number_common 
                                 . 
  300                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 post_event_nofinger 
  300                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 post_event_nofinger 
  300                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 post_event_nofinger 
  300                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 post_event_nofinger 
  300                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 post_event_nofinger 
  300                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 post_event_nofinger 
  300                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 post_event_nofinger 
  300                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 post_event_nofinger 
  300                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 post_event_nofinger 
  300                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 post_event_nofinger 
  300                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 post_event_nofinger 
  300                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 post_event_nofinger 
  300 function_arglist_common: "scheme?" 
                                 function_arglist_optional 
                                 post_event_nofinger 
                                 . 
  301                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  301                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  301                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  301                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  301                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  301                        | "scheme?" 
                                 . 
                                 function_arglist_optional 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  301                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  301                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  301                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  301                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  301                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  301                        | "scheme?" 
                                 function_arglist_optional 
                                 . 
                                 '-' 
                                 NUMBER_IDENTIFIER 
  301 function_arglist_common: "scheme?" 
                                 function_arglist_optional 
                                 '-' 
                                 . 
                                 NUMBER_IDENTIFIER 
  301 function_arglist_common: "scheme?" 
                                 function_arglist_optional 
                                 '-' 
                                 NUMBER_IDENTIFIER 
                                 . 
  302 function_arglist_common: function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 . 
                                 SCM_ARG 
  302 function_arglist_common: function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 SCM_ARG 
                                 . 
  302 function_arglist_common: function_arglist_common_reparse 
                                 . 
                                 "(reparsed?)" 
                                 SCM_ARG 
  303                        | function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 . 
                                 lyric_element_music 
  303                        | function_arglist_common_reparse 
                                 . 
                                 "(reparsed?)" 
                                 lyric_element_music 
  303 function_arglist_common: function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 lyric_element_music 
                                 . 
  304                        | function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 . 
                                 pitch_or_music 
  304                        | function_arglist_common_reparse 
                                 . 
                                 "(reparsed?)" 
                                 pitch_or_music 
  304 function_arglist_common: function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 pitch_or_music 
                                 . 
  305                        | function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 . 
                                 bare_number_common 
  305                        | function_arglist_common_reparse 
                                 . 
                                 "(reparsed?)" 
                                 bare_number_common 
  305 function_arglist_common: function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 bare_number_common 
                                 . 
  306                        | function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 . 
                                 multiplied_duration 
  306                        | function_arglist_common_reparse 
                                 . 
                                 "(reparsed?)" 
                                 multiplied_duration 
  306 function_arglist_common: function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 multiplied_duration 
                                 . 
  307                        | function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 . 
                                 reparsed_rhythm 
  307                        | function_arglist_common_reparse 
                                 . 
                                 "(reparsed?)" 
                                 reparsed_rhythm 
  307 function_arglist_common: function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 reparsed_rhythm 
                                 . 
  308                        | function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 . 
                                 symbol_list_arg 
  308                        | function_arglist_common_reparse 
                                 . 
                                 "(reparsed?)" 
                                 symbol_list_arg 
  308 function_arglist_common: function_arglist_common_reparse 
                                 "(reparsed?)" 
                                 symbol_list_arg 
                                 . 
  309 function_arglist_common_reparse: "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         SCM_IDENTIFIER 
  309 function_arglist_common_reparse: "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         SCM_IDENTIFIER 
  309 function_arglist_common_reparse: "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         SCM_IDENTIFIER 
  309 function_arglist_common_reparse: "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         SCM_IDENTIFIER 
  309 function_arglist_common_reparse: "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         SCM_IDENTIFIER 
  309 function_arglist_common_reparse: "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         SCM_IDENTIFIER 
  309 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         SCM_IDENTIFIER 
  309 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         SCM_IDENTIFIER 
  309 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         SCM_IDENTIFIER 
  309 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         SCM_IDENTIFIER 
  309 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         SCM_IDENTIFIER 
  309 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         SCM_IDENTIFIER 
  309 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         SCM_IDENTIFIER 
                                         . 
  310                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         pitch 
  310                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         pitch 
  310                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         pitch 
  310                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         pitch 
  310                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         pitch 
  310                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         pitch 
  310                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         pitch 
  310                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         pitch 
  310                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         pitch 
  310                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         pitch 
  310                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         pitch 
  310                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         pitch 
  310 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         pitch 
                                         . 
  311                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         steno_tonic_pitch 
  311                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         steno_tonic_pitch 
  311                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         steno_tonic_pitch 
  311                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         steno_tonic_pitch 
  311                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         steno_tonic_pitch 
  311                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         steno_tonic_pitch 
  311                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         steno_tonic_pitch 
  311                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         steno_tonic_pitch 
  311                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         steno_tonic_pitch 
  311                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         steno_tonic_pitch 
  311                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         steno_tonic_pitch 
  311                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         steno_tonic_pitch 
  311 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         steno_tonic_pitch 
                                         . 
  312                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         STRING 
  312                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         STRING 
  312                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         STRING 
  312                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         STRING 
  312                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         STRING 
  312                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         STRING 
  312                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         STRING 
  312                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         STRING 
  312                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         STRING 
  312                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         STRING 
  312                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         STRING 
  312                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         STRING 
  312 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         STRING 
                                         . 
  313                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         SYMBOL 
  313                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         SYMBOL 
  313                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         SYMBOL 
  313                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         SYMBOL 
  313                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         SYMBOL 
  313                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         SYMBOL 
  313                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         SYMBOL 
  313                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         SYMBOL 
  313                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         SYMBOL 
  313                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         SYMBOL 
  313                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         SYMBOL 
  313                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         SYMBOL 
  313 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         SYMBOL 
                                         . 
  314                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         full_markup 
  314                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         full_markup 
  314                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         full_markup 
  314                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         full_markup 
  314                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         full_markup 
  314                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         full_markup 
  314                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         full_markup 
  314                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         full_markup 
  314                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         full_markup 
  314                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         full_markup 
  314                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         full_markup 
  314                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         full_markup 
  314 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         full_markup 
                                         . 
  315                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         UNSIGNED 
  315                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         UNSIGNED 
  315                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         UNSIGNED 
  315                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         UNSIGNED 
  315                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         UNSIGNED 
  315                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         UNSIGNED 
  315                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         UNSIGNED 
  315                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         UNSIGNED 
  315                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         UNSIGNED 
  315                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         UNSIGNED 
  315                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         UNSIGNED 
  315                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         UNSIGNED 
  315 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         UNSIGNED 
                                         . 
  316                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         DURATION_IDENTIFIER 
  316                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         DURATION_IDENTIFIER 
  316                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         DURATION_IDENTIFIER 
  316                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         DURATION_IDENTIFIER 
  316                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         DURATION_IDENTIFIER 
  316                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         DURATION_IDENTIFIER 
  316                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         DURATION_IDENTIFIER 
  316                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         DURATION_IDENTIFIER 
  316                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         DURATION_IDENTIFIER 
  316                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         DURATION_IDENTIFIER 
  316                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         DURATION_IDENTIFIER 
  316                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         DURATION_IDENTIFIER 
  316 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         DURATION_IDENTIFIER 
                                         . 
  317                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         '-' 
                                         UNSIGNED 
  317                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         '-' 
                                         UNSIGNED 
  317                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         '-' 
                                         UNSIGNED 
  317                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         '-' 
                                         UNSIGNED 
  317                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         '-' 
                                         UNSIGNED 
  317                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         '-' 
                                         UNSIGNED 
  317                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         '-' 
                                         UNSIGNED 
  317                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         '-' 
                                         UNSIGNED 
  317                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         '-' 
                                         UNSIGNED 
  317                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         '-' 
                                         UNSIGNED 
  317                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         '-' 
                                         UNSIGNED 
  317                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         '-' 
                                         UNSIGNED 
  317 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         '-' 
                                         . 
                                         UNSIGNED 
  317 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         '-' 
                                         UNSIGNED 
                                         . 
  318                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         '-' 
                                         REAL 
  318                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         '-' 
                                         REAL 
  318                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         '-' 
                                         REAL 
  318                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         '-' 
                                         REAL 
  318                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         '-' 
                                         REAL 
  318                                | "scheme?" 
                                         . 
                                         function_arglist_optional 
                                         '-' 
                                         REAL 
  318                                | "scheme?" 
                                         function_arglist_optional 
                                         '-' 
                                         . 
                                         REAL 
  318                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         '-' 
                                         REAL 
  318                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         '-' 
                                         REAL 
  318                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         '-' 
                                         REAL 
  318                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         '-' 
                                         REAL 
  318                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         '-' 
                                         REAL 
  318                                | "scheme?" 
                                         function_arglist_optional 
                                         . 
                                         '-' 
                                         REAL 
  318 function_arglist_common_reparse: "scheme?" 
                                         function_arglist_optional 
                                         '-' 
                                         REAL 
                                         . 
  319 function_arglist_optional: function_arglist_backup .
  320 function_arglist_optional: "optional?" 
                                   "scheme?" 
                                   . 
                                   function_arglist_skip_backup 
                                   "\default" 
  320 function_arglist_optional: "optional?" 
                                   "scheme?" 
                                   . 
                                   function_arglist_skip_backup 
                                   "\default" 
  320 function_arglist_optional: "optional?" 
                                   "scheme?" 
                                   function_arglist_skip_backup 
                                   "\default" 
                                   . 
  320 function_arglist_optional: "optional?" 
                                   "scheme?" 
                                   function_arglist_skip_backup 
                                   . 
                                   "\default" 
  320 function_arglist_optional: "optional?" 
                                   . 
                                   "scheme?" 
                                   function_arglist_skip_backup 
                                   "\default" 
  320 function_arglist_optional: "optional?" 
                                   . 
                                   "scheme?" 
                                   function_arglist_skip_backup 
                                   "\default" 
  321 function_arglist_optional: function_arglist_skip_backup 
                                   "(backed-up?)" 
                                   . 
  321 function_arglist_optional: function_arglist_skip_backup 
                                   . 
                                   "(backed-up?)" 
  322 function_arglist_skip_backup: function_arglist_backup .
  322 function_arglist_skip_backup: function_arglist_backup .
  322 function_arglist_skip_backup: function_arglist_backup .
  323 function_arglist_skip_backup: "optional?" 
                                      "scheme?" 
                                      . 
                                      function_arglist_skip_backup 
  323 function_arglist_skip_backup: "optional?" 
                                      "scheme?" 
                                      . 
                                      function_arglist_skip_backup 
  323 function_arglist_skip_backup: "optional?" 
                                      "scheme?" 
                                      . 
                                      function_arglist_skip_backup 
  323 function_arglist_skip_backup: "optional?" 
                                      "scheme?" 
                                      . 
                                      function_arglist_skip_backup 
  323 function_arglist_skip_backup: "optional?" 
                                      "scheme?" 
                                      function_arglist_skip_backup 
                                      . 
  323 function_arglist_skip_backup: "optional?" 
                                      "scheme?" 
                                      function_arglist_skip_backup 
                                      . 
  323 function_arglist_skip_backup: "optional?" 
                                      . 
                                      "scheme?" 
                                      function_arglist_skip_backup 
  323 function_arglist_skip_backup: "optional?" 
                                      . 
                                      "scheme?" 
                                      function_arglist_skip_backup 
  323 function_arglist_skip_backup: "optional?" 
                                      . 
                                      "scheme?" 
                                      function_arglist_skip_backup 
  323 function_arglist_skip_backup: "optional?" 
                                      . 
                                      "scheme?" 
                                      function_arglist_skip_backup 
  324 music_function_call: MUSIC_FUNCTION . function_arglist
  324 music_function_call: MUSIC_FUNCTION . function_arglist
  324 music_function_call: MUSIC_FUNCTION function_arglist .
  326 optional_id: '=' . simple_string
  326 optional_id: '=' simple_string .
  328 lyric_mode_music: $@9 . grouped_music_list
  328 lyric_mode_music: $@9 grouped_music_list .
  329 lyric_mode_music: MUSIC_IDENTIFIER .
  330 mode_changed_music: mode_changing_head . grouped_music_list
  330 mode_changed_music: mode_changing_head grouped_music_list .
  331 mode_changed_music: mode_changing_head_with_context 
                            . 
                            optional_context_mods 
                            grouped_music_list 
  331 mode_changed_music: mode_changing_head_with_context 
                            optional_context_mods 
                            . 
                            grouped_music_list 
  331 mode_changed_music: mode_changing_head_with_context 
                            optional_context_mods 
                            grouped_music_list 
                            . 
  332 mode_changing_head: "\notemode" .
  333 mode_changing_head: "\drummode" .
  334 mode_changing_head: "\figuremode" .
  335 mode_changing_head: "\chordmode" .
  336 mode_changing_head: "\lyricmode" .
  337 mode_changing_head_with_context: "\drums" .
  338 mode_changing_head_with_context: "\figures" .
  339 mode_changing_head_with_context: "\chords" .
  340 mode_changing_head_with_context: "\lyrics" .
  341 context_change: "\change" . symbol '=' simple_string
  341 context_change: "\change" symbol '=' . simple_string
  341 context_change: "\change" symbol '=' simple_string .
  341 context_change: "\change" symbol . '=' simple_string
  342 property_path: symbol_list_rev .
  343 property_operation: symbol '=' . scalar
  343 property_operation: symbol '=' scalar .
  343 property_operation: symbol . '=' scalar
  344 property_operation: "\unset" . symbol
  344 property_operation: "\unset" symbol .
  345 property_operation: "\override" . revert_arg '=' scalar
  345 property_operation: "\override" revert_arg '=' . scalar
  345 property_operation: "\override" revert_arg '=' scalar .
  345 property_operation: "\override" revert_arg . '=' scalar
  346 property_operation: "\revert" . revert_arg
  346 property_operation: "\revert" revert_arg .
  347 revert_arg: revert_arg_backup "(backed-up?)" . symbol_list_arg
  347 revert_arg: revert_arg_backup "(backed-up?)" symbol_list_arg .
  347 revert_arg: revert_arg_backup . "(backed-up?)" symbol_list_arg
  348 revert_arg_backup: revert_arg_part .
  349 revert_arg_part: symbol_list_part .
  350 revert_arg_part: revert_arg_backup 
                         "(backed-up?)" 
                         . 
                         SCM_ARG 
                         '.' 
                         symbol_list_part 
  350 revert_arg_part: revert_arg_backup 
                         "(backed-up?)" 
                         SCM_ARG 
                         '.' 
                         . 
                         symbol_list_part 
  350 revert_arg_part: revert_arg_backup 
                         "(backed-up?)" 
                         SCM_ARG 
                         '.' 
                         symbol_list_part 
                         . 
  350 revert_arg_part: revert_arg_backup 
                         "(backed-up?)" 
                         SCM_ARG 
                         . 
                         '.' 
                         symbol_list_part 
  350 revert_arg_part: revert_arg_backup 
                         . 
                         "(backed-up?)" 
                         SCM_ARG 
                         '.' 
                         symbol_list_part 
  351                | revert_arg_backup 
                         "(backed-up?)" 
                         . 
                         SCM_ARG 
                         ',' 
                         symbol_list_part 
  351                | revert_arg_backup 
                         "(backed-up?)" 
                         SCM_ARG 
                         . 
                         ',' 
                         symbol_list_part 
  351                | revert_arg_backup 
                         . 
                         "(backed-up?)" 
                         SCM_ARG 
                         ',' 
                         symbol_list_part 
  351 revert_arg_part: revert_arg_backup 
                         "(backed-up?)" 
                         SCM_ARG 
                         ',' 
                         . 
                         symbol_list_part 
  351 revert_arg_part: revert_arg_backup 
                         "(backed-up?)" 
                         SCM_ARG 
                         ',' 
                         symbol_list_part 
                         . 
  352                | revert_arg_backup 
                         "(backed-up?)" 
                         . 
                         SCM_ARG 
                         symbol_list_part 
  352                | revert_arg_backup 
                         "(backed-up?)" 
                         SCM_ARG 
                         . 
                         symbol_list_part 
  352                | revert_arg_backup 
                         . 
                         "(backed-up?)" 
                         SCM_ARG 
                         symbol_list_part 
  352 revert_arg_part: revert_arg_backup 
                         "(backed-up?)" 
                         SCM_ARG 
                         symbol_list_part 
                         . 
  353 context_def_mod: "\consists" .
  354 context_def_mod: "\remove" .
  355 context_def_mod: "\accepts" .
  356 context_def_mod: "\defaultchild" .
  357 context_def_mod: "\denies" .
  358 context_def_mod: "\alias" .
  359 context_def_mod: "\type" .
  360 context_def_mod: "\description" .
  361 context_def_mod: "\name" .
  362 context_mod: property_operation .
  363 context_mod: context_def_mod . STRING
  363 context_mod: context_def_mod STRING .
  364            | context_def_mod . SYMBOL
  364 context_mod: context_def_mod SYMBOL .
  365            | context_def_mod . embedded_scm
  365 context_mod: context_def_mod embedded_scm .
  366 grob_prop_spec: symbol_list_rev .
  367 grob_prop_path: grob_prop_spec .
  368               | grob_prop_spec . property_path
  368 grob_prop_path: grob_prop_spec property_path .
  369 context_prop_spec: symbol_list_rev .
  370 simple_revert_context: symbol_list_part .
  371 music_property_def: "\override" . grob_prop_path '=' scalar
  371 music_property_def: "\override" . grob_prop_path '=' scalar
  371 music_property_def: "\override" grob_prop_path '=' . scalar
  371 music_property_def: "\override" grob_prop_path '=' . scalar
  371 music_property_def: "\override" grob_prop_path '=' scalar .
  371 music_property_def: "\override" grob_prop_path . '=' scalar
  371 music_property_def: "\override" grob_prop_path . '=' scalar
  372 music_property_def: "\revert" . simple_revert_context revert_arg
  372 music_property_def: "\revert" simple_revert_context . revert_arg
  372 music_property_def: "\revert" simple_revert_context revert_arg .
  373 music_property_def: "\set" . context_prop_spec '=' scalar
  373 music_property_def: "\set" . context_prop_spec '=' scalar
  373 music_property_def: "\set" context_prop_spec '=' . scalar
  373 music_property_def: "\set" context_prop_spec '=' . scalar
  373 music_property_def: "\set" context_prop_spec '=' scalar .
  373 music_property_def: "\set" context_prop_spec . '=' scalar
  373 music_property_def: "\set" context_prop_spec . '=' scalar
  374 music_property_def: "\unset" . context_prop_spec
  374 music_property_def: "\unset" context_prop_spec .
  375 string: STRING .
  375 string: STRING .
  376 string: SYMBOL .
  376 string: SYMBOL .
  377 string: full_markup .
  377 string: full_markup .
  378 text: STRING .
  379 text: SYMBOL .
  380 text: full_markup .
  381 text: embedded_scm_bare .
  382 simple_string: STRING .
  382 simple_string: STRING .
  383 simple_string: SYMBOL .
  383 simple_string: SYMBOL .
  384 simple_string: embedded_scm_bare .
  384 simple_string: embedded_scm_bare .
  385 symbol: STRING .
  385 symbol: STRING .
  386 symbol: SYMBOL .
  386 symbol: SYMBOL .
  387 symbol: embedded_scm_bare .
  387 symbol: embedded_scm_bare .
  387 symbol: embedded_scm_bare .
  388 scalar: embedded_scm_arg .
  389 scalar: pitch_or_music .
  390 scalar: SCM_IDENTIFIER .
  391 scalar: bare_number .
  392 scalar: '-' . bare_number
  392 scalar: '-' . bare_number
  392 scalar: '-' bare_number .
  393 scalar: string .
  394 scalar: symbol_list_part_bare '.' . property_path
  394 scalar: symbol_list_part_bare '.' property_path .
  394 scalar: symbol_list_part_bare . '.' property_path
  395       | symbol_list_part_bare . ',' property_path
  395 scalar: symbol_list_part_bare ',' . property_path
  395 scalar: symbol_list_part_bare ',' property_path .
  396 event_chord: simple_element . post_events
  396 event_chord: simple_element post_events .
  397 event_chord: CHORD_REPETITION . optional_notemode_duration post_events
  397 event_chord: CHORD_REPETITION optional_notemode_duration . post_events
  397 event_chord: CHORD_REPETITION optional_notemode_duration post_events .
  398 event_chord: MULTI_MEASURE_REST 
                     . 
                     optional_notemode_duration 
                     post_events 
  398 event_chord: MULTI_MEASURE_REST 
                     optional_notemode_duration 
                     . 
                     post_events 
  398 event_chord: MULTI_MEASURE_REST 
                     optional_notemode_duration 
                     post_events 
                     . 
  399 event_chord: tempo_event .
  400 event_chord: note_chord_element .
  401 note_chord_element: chord_body . optional_notemode_duration post_events
  401 note_chord_element: chord_body optional_notemode_duration . post_events
  401 note_chord_element: chord_body optional_notemode_duration post_events .
  402 chord_body: "<" . chord_body_elements ">"
  402 chord_body: "<" chord_body_elements ">" .
  402 chord_body: "<" chord_body_elements . ">"
  403 chord_body: FIGURE_OPEN . figure_list FIGURE_CLOSE
  403 chord_body: FIGURE_OPEN figure_list . FIGURE_CLOSE
  403 chord_body: FIGURE_OPEN figure_list FIGURE_CLOSE .
  405 chord_body_elements: chord_body_elements . chord_body_element
  405 chord_body_elements: chord_body_elements chord_body_element .
  406 chord_body_element: pitch_or_tonic_pitch 
                            . 
                            exclamations 
                            questions 
                            octave_check 
                            post_events 
  406 chord_body_element: pitch_or_tonic_pitch 
                            exclamations 
                            . 
                            questions 
                            octave_check 
                            post_events 
  406 chord_body_element: pitch_or_tonic_pitch 
                            exclamations 
                            questions 
                            . 
                            octave_check 
                            post_events 
  406 chord_body_element: pitch_or_tonic_pitch 
                            exclamations 
                            questions 
                            octave_check 
                            . 
                            post_events 
  406 chord_body_element: pitch_or_tonic_pitch 
                            exclamations 
                            questions 
                            octave_check 
                            post_events 
                            . 
  407 chord_body_element: DRUM_PITCH . post_events
  407 chord_body_element: DRUM_PITCH post_events .
  408 chord_body_element: music_function_chord_body .
  409 music_function_chord_body: music_function_call .
  410 music_function_chord_body: MUSIC_IDENTIFIER .
  411 music_function_chord_body: embedded_scm .
  412 event_function_event: EVENT_FUNCTION . function_arglist
  412 event_function_event: EVENT_FUNCTION . function_arglist
  412 event_function_event: EVENT_FUNCTION function_arglist .
  414 post_events: post_events . post_event
  414 post_events: post_events . post_event
  414 post_events: post_events . post_event
  414 post_events: post_events . post_event
  414 post_events: post_events . post_event
  414 post_events: post_events . post_event
  414 post_events: post_events . post_event
  414 post_events: post_events . post_event
  414 post_events: post_events . post_event
  414 post_events: post_events . post_event
  414 post_events: post_events . post_event
  414 post_events: post_events . post_event
  414 post_events: post_events . post_event
  414 post_events: post_events post_event .
  415 post_event_nofinger: direction_less_event .
  416 post_event_nofinger: script_dir . music_function_call
  416 post_event_nofinger: script_dir . music_function_call
  416 post_event_nofinger: script_dir music_function_call .
  417 post_event_nofinger: "--" .
  418 post_event_nofinger: "__" .
  419                    | script_dir . direction_reqd_event
  419                    | script_dir . direction_reqd_event
  419 post_event_nofinger: script_dir direction_reqd_event .
  420                    | script_dir . direction_less_event
  420                    | script_dir . direction_less_event
  420 post_event_nofinger: script_dir direction_less_event .
  421 post_event_nofinger: '^' . fingering
  421 post_event_nofinger: '^' fingering .
  422 post_event_nofinger: '_' . fingering
  422 post_event_nofinger: '_' fingering .
  423 post_event: post_event_nofinger .
  424 post_event: '-' . fingering
  424 post_event: '-' . fingering
  424 post_event: '-' fingering .
  425 string_number_event: E_UNSIGNED .
  426 direction_less_event: string_number_event .
  427 direction_less_event: EVENT_IDENTIFIER .
  428 direction_less_event: tremolo_type .
  429 direction_less_event: event_function_event .
  430 direction_reqd_event: gen_text_def .
  431 direction_reqd_event: script_abbreviation .
  433 octave_check: '=' . quotes
  433 octave_check: '=' quotes .
  435 quotes: sub_quotes .
  436 quotes: sup_quotes .
  437 sup_quotes: '\'' .
  438 sup_quotes: sup_quotes '\'' .
  438 sup_quotes: sup_quotes . '\''
  439 sub_quotes: ',' .
  440 sub_quotes: sub_quotes ',' .
  440 sub_quotes: sub_quotes . ','
  441 steno_pitch: NOTENAME_PITCH . quotes
  441 steno_pitch: NOTENAME_PITCH quotes .
  442 steno_tonic_pitch: TONICNAME_PITCH . quotes
  442 steno_tonic_pitch: TONICNAME_PITCH quotes .
  443 pitch: steno_pitch .
  444 pitch: PITCH_IDENTIFIER . quotes
  444 pitch: PITCH_IDENTIFIER quotes .
  445 pitch_or_tonic_pitch: pitch .
  446 pitch_or_tonic_pitch: steno_tonic_pitch .
  447 gen_text_def: full_markup .
  448 gen_text_def: STRING .
  449 gen_text_def: SYMBOL .
  450 gen_text_def: embedded_scm .
  451 fingering: UNSIGNED .
  451 fingering: UNSIGNED .
  452 script_abbreviation: '^' .
  453 script_abbreviation: '+' .
  454 script_abbreviation: '-' .
  455 script_abbreviation: '!' .
  456 script_abbreviation: ">" .
  457 script_abbreviation: '.' .
  458 script_abbreviation: '_' .
  459 script_dir: '_' .
  459 script_dir: '_' .
  460 script_dir: '^' .
  460 script_dir: '^' .
  461 script_dir: '-' .
  461 script_dir: '-' .
  461 script_dir: '-' .
  461 script_dir: '-' .
  461 script_dir: '-' .
  461 script_dir: '-' .
  461 script_dir: '-' .
  461 script_dir: '-' .
  463 maybe_notemode_duration: multiplied_duration .
  464 optional_notemode_duration: maybe_notemode_duration .
  464 optional_notemode_duration: maybe_notemode_duration .
  465 steno_duration: UNSIGNED . dots
  465 steno_duration: UNSIGNED . dots
  465 steno_duration: UNSIGNED dots .
  466 steno_duration: DURATION_IDENTIFIER . dots
  466 steno_duration: DURATION_IDENTIFIER dots .
  467 multiplied_duration: steno_duration . multipliers
  467 multiplied_duration: steno_duration multipliers .
  469 dots: dots '.' .
  469 dots: dots . '.'
  469 dots: dots . '.'
  469 dots: dots . '.'
  471 multipliers: multipliers '*' . UNSIGNED
  471 multipliers: multipliers '*' UNSIGNED .
  471 multipliers: multipliers . '*' UNSIGNED
  471 multipliers: multipliers . '*' UNSIGNED
  472            | multipliers '*' . FRACTION
  472            | multipliers . '*' FRACTION
  472            | multipliers . '*' FRACTION
  472 multipliers: multipliers '*' FRACTION .
  473 tremolo_type: ':' .
  474             | ':' . UNSIGNED
  474 tremolo_type: ':' UNSIGNED .
  475 bass_number: UNSIGNED .
  476 bass_number: STRING .
  477 bass_number: SYMBOL .
  478 bass_number: full_markup .
  479 bass_number: embedded_scm_bare .
  480 figured_bass_alteration: '-' .
  481 figured_bass_alteration: '+' .
  482 figured_bass_alteration: '!' .
  483 bass_figure: "_" .
  484 bass_figure: bass_number .
  485 bass_figure: bass_figure ']' .
  485 bass_figure: bass_figure . ']'
  485 bass_figure: bass_figure . ']'
  486            | bass_figure . figured_bass_alteration
  486            | bass_figure . figured_bass_alteration
  486 bass_figure: bass_figure figured_bass_alteration .
  487            | bass_figure . figured_bass_modification
  487            | bass_figure . figured_bass_modification
  487 bass_figure: bass_figure figured_bass_modification .
  488 figured_bass_modification: "\+" .
  489 figured_bass_modification: "\!" .
  490 figured_bass_modification: '/' .
  491 figured_bass_modification: "\" .
  492 br_bass_figure: bass_figure .
  493 br_bass_figure: '[' . bass_figure
  493 br_bass_figure: '[' bass_figure .
  495 figure_list: figure_list . br_bass_figure
  495 figure_list: figure_list br_bass_figure .
  497 optional_rest: "\rest" .
  498 pitch_or_music: pitch 
                        . 
                        exclamations 
                        questions 
                        octave_check 
                        maybe_notemode_duration 
                        optional_rest 
                        post_events 
  498 pitch_or_music: pitch 
                        exclamations 
                        . 
                        questions 
                        octave_check 
                        maybe_notemode_duration 
                        optional_rest 
                        post_events 
  498 pitch_or_music: pitch 
                        exclamations 
                        questions 
                        . 
                        octave_check 
                        maybe_notemode_duration 
                        optional_rest 
                        post_events 
  498 pitch_or_music: pitch 
                        exclamations 
                        questions 
                        octave_check 
                        . 
                        maybe_notemode_duration 
                        optional_rest 
                        post_events 
  498 pitch_or_music: pitch 
                        exclamations 
                        questions 
                        octave_check 
                        maybe_notemode_duration 
                        . 
                        optional_rest 
                        post_events 
  498 pitch_or_music: pitch 
                        exclamations 
                        questions 
                        octave_check 
                        maybe_notemode_duration 
                        optional_rest 
                        . 
                        post_events 
  498 pitch_or_music: pitch 
                        exclamations 
                        questions 
                        octave_check 
                        maybe_notemode_duration 
                        optional_rest 
                        post_events 
                        . 
  499 pitch_or_music: new_chord . post_events
  499 pitch_or_music: new_chord post_events .
  500 simple_element: DRUM_PITCH . optional_notemode_duration
  500 simple_element: DRUM_PITCH optional_notemode_duration .
  501 simple_element: RESTNAME . optional_notemode_duration
  501 simple_element: RESTNAME optional_notemode_duration .
  502 lyric_element: full_markup .
  502 lyric_element: full_markup .
  503 lyric_element: SYMBOL .
  503 lyric_element: SYMBOL .
  504 lyric_element: STRING .
  504 lyric_element: STRING .
  505 lyric_element: LYRIC_ELEMENT .
  506 lyric_element_music: lyric_element 
                             . 
                             optional_notemode_duration 
                             post_events 
  506 lyric_element_music: lyric_element 
                             optional_notemode_duration 
                             . 
                             post_events 
  506 lyric_element_music: lyric_element 
                             optional_notemode_duration 
                             post_events 
                             . 
  507 new_chord: steno_tonic_pitch . maybe_notemode_duration
  507 new_chord: steno_tonic_pitch maybe_notemode_duration .
  508          | steno_tonic_pitch 
                   . 
                   optional_notemode_duration 
                   chord_separator 
                   chord_items 
  508 new_chord: steno_tonic_pitch 
                   optional_notemode_duration 
                   . 
                   chord_separator 
                   chord_items 
  508 new_chord: steno_tonic_pitch 
                   optional_notemode_duration 
                   chord_separator 
                   . 
                   chord_items 
  508 new_chord: steno_tonic_pitch 
                   optional_notemode_duration 
                   chord_separator 
                   chord_items 
                   . 
  510 chord_items: chord_items . chord_item
  510 chord_items: chord_items chord_item .
  511 chord_separator: ":" .
  512 chord_separator: "^" .
  513 chord_separator: "/" . steno_tonic_pitch
  513 chord_separator: "/" steno_tonic_pitch .
  514 chord_separator: "/+" . steno_tonic_pitch
  514 chord_separator: "/+" steno_tonic_pitch .
  515 chord_item: chord_separator .
  516 chord_item: step_numbers .
  517 chord_item: CHORD_MODIFIER .
  518 step_numbers: step_number .
  519 step_numbers: step_numbers '.' . step_number
  519 step_numbers: step_numbers '.' step_number .
  519 step_numbers: step_numbers . '.' step_number
  520 step_number: UNSIGNED .
  521            | UNSIGNED . '+'
  521 step_number: UNSIGNED '+' .
  522            | UNSIGNED . "-"
  522 step_number: UNSIGNED "-" .
  523 tempo_range: unsigned_number .
  524            | unsigned_number . '-' unsigned_number
  524 tempo_range: unsigned_number '-' . unsigned_number
  524 tempo_range: unsigned_number '-' unsigned_number .
  525 number_expression: number_expression '+' . number_term
  525 number_expression: number_expression '+' number_term .
  525 number_expression: number_expression . '+' number_term
  526                  | number_expression . '-' number_term
  526 number_expression: number_expression '-' . number_term
  526 number_expression: number_expression '-' number_term .
  527 number_expression: number_term .
  528 number_term: number_factor .
  529            | number_factor . '*' number_factor
  529 number_term: number_factor '*' . number_factor
  529 number_term: number_factor '*' number_factor .
  530            | number_factor . '/' number_factor
  530 number_term: number_factor '/' . number_factor
  530 number_term: number_factor '/' number_factor .
  531 number_factor: '-' . number_factor
  531 number_factor: '-' . number_factor
  531 number_factor: '-' number_factor .
  532 number_factor: bare_number .
  533 bare_number_common: REAL .
  534 bare_number_common: NUMBER_IDENTIFIER .
  535                   | REAL . NUMBER_IDENTIFIER
  535 bare_number_common: REAL NUMBER_IDENTIFIER .
  536 bare_number: bare_number_common .
  537 bare_number: UNSIGNED .
  537 bare_number: UNSIGNED .
  538            | UNSIGNED . NUMBER_IDENTIFIER
  538            | UNSIGNED . NUMBER_IDENTIFIER
  538 bare_number: UNSIGNED NUMBER_IDENTIFIER .
  539 unsigned_number: UNSIGNED .
  540 unsigned_number: NUMBER_IDENTIFIER .
  541 unsigned_number: embedded_scm .
  543 exclamations: exclamations '!' .
  543 exclamations: exclamations . '!'
  543 exclamations: exclamations . '!'
  545 questions: questions '?' .
  545 questions: questions . '?'
  545 questions: questions . '?'
  547 full_markup_list: "\markuplist" $@10 . markup_list
  547 full_markup_list: "\markuplist" $@10 markup_list .
  547 full_markup_list: "\markuplist" . $@10 markup_list
  548 markup_mode: "\markup" .
  549 markup_mode_word: markup_mode . markup_word
  549 markup_mode_word: markup_mode . markup_word
  549 markup_mode_word: markup_mode . markup_word
  549 markup_mode_word: markup_mode . markup_word
  549 markup_mode_word: markup_mode markup_word .
  550 full_markup: markup_mode . markup_top
  550 full_markup: markup_mode . markup_top
  550 full_markup: markup_mode . markup_top
  550 full_markup: markup_mode markup_top .
  551 full_markup: markup_mode_word .
  551 full_markup: markup_mode_word .
  552 partial_markup: markup_mode . markup_partial_function "\etc"
  552 partial_markup: markup_mode markup_partial_function "\etc" .
  552 partial_markup: markup_mode markup_partial_function . "\etc"
  553 markup_top: markup_list .
  554 markup_top: markup_head_1_list . simple_markup
  554 markup_top: markup_head_1_list . simple_markup
  554 markup_top: markup_head_1_list simple_markup .
  555 markup_top: simple_markup_noword .
  557 markup_scm: embedded_scm $@11 "(backed-up?)" .
  557 markup_scm: embedded_scm $@11 . "(backed-up?)"
  557 markup_scm: embedded_scm . $@11 "(backed-up?)"
  558 markup_list: markup_composed_list .
  559 markup_list: markup_uncomposed_list .
  560 markup_uncomposed_list: markup_braced_list .
  561 markup_uncomposed_list: markup_command_list .
  562 markup_uncomposed_list: markup_scm . MARKUPLIST_IDENTIFIER
  562 markup_uncomposed_list: markup_scm . MARKUPLIST_IDENTIFIER
  562 markup_uncomposed_list: markup_scm MARKUPLIST_IDENTIFIER .
  564 markup_uncomposed_list: "\score-lines" $@12 '{' . score_body '}'
  564 markup_uncomposed_list: "\score-lines" $@12 '{' score_body '}' .
  564 markup_uncomposed_list: "\score-lines" $@12 '{' score_body . '}'
  564 markup_uncomposed_list: "\score-lines" $@12 . '{' score_body '}'
  564 markup_uncomposed_list: "\score-lines" . $@12 '{' score_body '}'
  565 markup_composed_list: markup_head_1_list . markup_uncomposed_list
  565 markup_composed_list: markup_head_1_list . markup_uncomposed_list
  565 markup_composed_list: markup_head_1_list . markup_uncomposed_list
  565 markup_composed_list: markup_head_1_list . markup_uncomposed_list
  565 markup_composed_list: markup_head_1_list markup_uncomposed_list .
  566 markup_braced_list: '{' . markup_braced_list_body '}'
  566 markup_braced_list: '{' markup_braced_list_body '}' .
  566 markup_braced_list: '{' markup_braced_list_body . '}'
  568 markup_braced_list_body: markup_braced_list_body . markup
  568 markup_braced_list_body: markup_braced_list_body markup .
  569                        | markup_braced_list_body . markup_list
  569 markup_braced_list_body: markup_braced_list_body markup_list .
  570 markup_command_list: MARKUP_LIST_FUNCTION 
                             . 
                             markup_command_list_arguments 
  570 markup_command_list: MARKUP_LIST_FUNCTION 
                             markup_command_list_arguments 
                             . 
  571 markup_command_basic_arguments: "markup-list?" 
                                        . 
                                        markup_command_list_arguments 
                                        markup_list 
  571 markup_command_basic_arguments: "markup-list?" 
                                        markup_command_list_arguments 
                                        . 
                                        markup_list 
  571 markup_command_basic_arguments: "markup-list?" 
                                        markup_command_list_arguments 
                                        markup_list 
                                        . 
  572 markup_command_basic_arguments: "scheme?" 
                                        . 
                                        markup_command_list_arguments 
                                        embedded_scm 
  572 markup_command_basic_arguments: "scheme?" 
                                        . 
                                        markup_command_list_arguments 
                                        embedded_scm 
  572 markup_command_basic_arguments: "scheme?" 
                                        markup_command_list_arguments 
                                        . 
                                        embedded_scm 
  572 markup_command_basic_arguments: "scheme?" 
                                        markup_command_list_arguments 
                                        . 
                                        embedded_scm 
  572 markup_command_basic_arguments: "scheme?" 
                                        markup_command_list_arguments 
                                        embedded_scm 
                                        . 
  573                               | "scheme?" 
                                        . 
                                        markup_command_list_arguments 
                                        STRING 
  573                               | "scheme?" 
                                        . 
                                        markup_command_list_arguments 
                                        STRING 
  573                               | "scheme?" 
                                        markup_command_list_arguments 
                                        . 
                                        STRING 
  573                               | "scheme?" 
                                        markup_command_list_arguments 
                                        . 
                                        STRING 
  573 markup_command_basic_arguments: "scheme?" 
                                        markup_command_list_arguments 
                                        STRING 
                                        . 
  574 markup_command_basic_arguments: EXPECT_NO_MORE_ARGS .
  575 markup_command_list_arguments: markup_command_basic_arguments .
  576 markup_command_list_arguments: "markup?" 
                                       . 
                                       markup_command_list_arguments 
                                       markup 
  576 markup_command_list_arguments: "markup?" 
                                       . 
                                       markup_command_list_arguments 
                                       markup 
  576 markup_command_list_arguments: "markup?" 
                                       markup_command_list_arguments 
                                       . 
                                       markup 
  576 markup_command_list_arguments: "markup?" 
                                       markup_command_list_arguments 
                                       . 
                                       markup 
  576 markup_command_list_arguments: "markup?" 
                                       markup_command_list_arguments 
                                       markup 
                                       . 
  577 markup_partial_function: MARKUP_FUNCTION . markup_arglist_partial
  577 markup_partial_function: MARKUP_FUNCTION . markup_arglist_partial
  577 markup_partial_function: MARKUP_FUNCTION markup_arglist_partial .
  578 markup_partial_function: markup_head_1_list 
                                 . 
                                 MARKUP_FUNCTION 
                                 markup_arglist_partial 
  578 markup_partial_function: markup_head_1_list 
                                 . 
                                 MARKUP_FUNCTION 
                                 markup_arglist_partial 
  578 markup_partial_function: markup_head_1_list 
                                 MARKUP_FUNCTION 
                                 . 
                                 markup_arglist_partial 
  578 markup_partial_function: markup_head_1_list 
                                 MARKUP_FUNCTION 
                                 . 
                                 markup_arglist_partial 
  578 markup_partial_function: markup_head_1_list 
                                 MARKUP_FUNCTION 
                                 markup_arglist_partial 
                                 . 
  579 markup_arglist_partial: "markup?" . markup_arglist_partial
  579 markup_arglist_partial: "markup?" . markup_arglist_partial
  579 markup_arglist_partial: "markup?" markup_arglist_partial .
  580 markup_arglist_partial: "scheme?" . markup_arglist_partial
  580 markup_arglist_partial: "scheme?" . markup_arglist_partial
  580 markup_arglist_partial: "scheme?" markup_arglist_partial .
  581                       | "markup?" . markup_command_list_arguments
  581                       | "markup?" . markup_command_list_arguments
  581 markup_arglist_partial: "markup?" markup_command_list_arguments .
  581 markup_arglist_partial: "markup?" markup_command_list_arguments .
  582                       | "scheme?" . markup_command_list_arguments
  582                       | "scheme?" . markup_command_list_arguments
  582 markup_arglist_partial: "scheme?" markup_command_list_arguments .
  582 markup_arglist_partial: "scheme?" markup_command_list_arguments .
  583 markup_head_1_item: MARKUP_FUNCTION 
                            "markup?" 
                            . 
                            markup_command_list_arguments 
  583 markup_head_1_item: MARKUP_FUNCTION 
                            "markup?" 
                            . 
                            markup_command_list_arguments 
  583 markup_head_1_item: MARKUP_FUNCTION 
                            "markup?" 
                            markup_command_list_arguments 
                            . 
  583 markup_head_1_item: MARKUP_FUNCTION 
                            "markup?" 
                            markup_command_list_arguments 
                            . 
  583 markup_head_1_item: MARKUP_FUNCTION 
                            . 
                            "markup?" 
                            markup_command_list_arguments 
  583 markup_head_1_item: MARKUP_FUNCTION 
                            . 
                            "markup?" 
                            markup_command_list_arguments 
  583 markup_head_1_item: MARKUP_FUNCTION 
                            . 
                            "markup?" 
                            markup_command_list_arguments 
  583 markup_head_1_item: MARKUP_FUNCTION 
                            . 
                            "markup?" 
                            markup_command_list_arguments 
  583 markup_head_1_item: MARKUP_FUNCTION 
                            . 
                            "markup?" 
                            markup_command_list_arguments 
  583 markup_head_1_item: MARKUP_FUNCTION 
                            . 
                            "markup?" 
                            markup_command_list_arguments 
  584 markup_head_1_list: markup_head_1_item .
  585 markup_head_1_list: markup_head_1_list . markup_head_1_item
  585 markup_head_1_list: markup_head_1_list . markup_head_1_item
  585 markup_head_1_list: markup_head_1_list . markup_head_1_item
  585 markup_head_1_list: markup_head_1_list . markup_head_1_item
  585 markup_head_1_list: markup_head_1_list . markup_head_1_item
  585 markup_head_1_list: markup_head_1_list . markup_head_1_item
  585 markup_head_1_list: markup_head_1_list markup_head_1_item .
  586 markup_word: STRING .
  587 markup_word: SYMBOL .
  588 simple_markup: markup_word .
  589 simple_markup: simple_markup_noword .
  591 simple_markup_noword: "\score" $@13 '{' . score_body '}'
  591 simple_markup_noword: "\score" $@13 '{' score_body '}' .
  591 simple_markup_noword: "\score" $@13 '{' score_body . '}'
  591 simple_markup_noword: "\score" $@13 . '{' score_body '}'
  591 simple_markup_noword: "\score" . $@13 '{' score_body '}'
  592 simple_markup_noword: MARKUP_FUNCTION . markup_command_basic_arguments
  592 simple_markup_noword: MARKUP_FUNCTION . markup_command_basic_arguments
  592 simple_markup_noword: MARKUP_FUNCTION . markup_command_basic_arguments
  592 simple_markup_noword: MARKUP_FUNCTION markup_command_basic_arguments .
  593 simple_markup_noword: markup_scm . MARKUP_IDENTIFIER
  593 simple_markup_noword: markup_scm . MARKUP_IDENTIFIER
  593 simple_markup_noword: markup_scm MARKUP_IDENTIFIER .
  594 markup: markup_head_1_list . simple_markup
  594 markup: markup_head_1_list . simple_markup
  594 markup: markup_head_1_list simple_markup .
  595 markup: simple_markup .
$@1 (131)
    on left: 2, on right: 3
$@10 (302)
    on left: 546, on right: 547
$@11 (309)
    on left: 556, on right: 557
$@12 (312)
    on left: 563, on right: 564
$@13 (326)
    on left: 590, on right: 591
$@2 (146)
    on left: 63, on right: 64
$@3 (155)
    on left: 110, on right: 111
$@4 (159)
    on left: 127, on right: 128
$@5 (162)
    on left: 140, on right: 141
$@6 (167)
    on left: 151, on right: 152
$@7 (174)
    on left: 165, on right: 166
$@8 (188)
    on left: 195, on right: 196
$@9 (221)
    on left: 327, on right: 328
assignment (148)
    on left: 67 68 69 70, on right: 6 59 162
assignment_id (147)
    on left: 65 66, on right: 67 68 69
bare_number (297)
    on left: 536 537 538, on right: 391 392 532
basic_music (195)
    on left: 210 211 212 213 214, on right: 215 221 223
bass_number (275)
    on left: 475 476 477 478 479, on right: 484
book_block (157)
    on left: 116, on right: 10 36 78
bookpart_block (160)
    on left: 130, on right: 11 37 79 120
br_bass_figure (279)
    on left: 492 493, on right: 495
braced_music_list (177)
    on left: 174, on right: 187 188 189 190
chord_body (245)
    on left: 402 403, on right: 401
chord_body_element (247)
    on left: 406 407 408, on right: 405
chord_body_elements (246)
    on left: 404 405, on right: 402 405
chord_item (289)
    on left: 515 516 517, on right: 510
chord_items (287)
    on left: 509 510, on right: 508 510
chord_separator (288)
    on left: 511 512 513 514, on right: 508 515
composite_music (198)
    on left: 221 222 223, on right: 14 111 122 135 185
context_change (225)
    on left: 341, on right: 194
context_def_spec_block (153)
    on left: 108, on right: 35 81 160
context_mod (232)
    on left: 362 363 364 365, on right: 113 204
context_mod_arg (154)
    on left: 109 111, on right: 115 205
context_mod_list (192)
    on left: 203 204 205, on right: 196 204 205
context_modification (187)
    on left: 196 197, on right: 32 89 114 202
context_modification_arg (189)
    on left: 198 199, on right: 197
context_modification_mods_list (191)
    on left: 201 202, on right: 200 202
context_prefix (193)
    on left: 206 207, on right: 218 219 220
context_prop_spec (235)
    on left: 369, on right: 102 104 373 374
contextable_music (196)
    on left: 215 216 217, on right: 218 219
contexted_basic_music (197)
    on left: 218 219 220, on right: 220 222
direction_less_event (254)
    on left: 426 427 428 429, on right: 415 420
direction_reqd_event (255)
    on left: 430 431, on right: 419
dots (272)
    on left: 468 469, on right: 255 465 466 469
embedded_lilypond (142)
    on left: 50 51 52 53 54 55 56 57, on right: 3 57
embedded_lilypond_number (141)
    on left: 47 48 49, on right: 47 52
embedded_scm_active (136)
    on left: 24 25 26, on right: 18 61 126 139 163
embedded_scm_arg (139)
    on left: 43 44 45, on right: 246 265 298 388
embedded_scm_bare (135)
    on left: 22 23, on right: 40 236 381 384 387 479
event_chord (243)
    on left: 396 397 398 399 400, on right: 192 217
event_function_event (249)
    on left: 412, on right: 429
exclamations (299)
    on left: 542 543, on right: 406 498 543
figure_list (280)
    on left: 494 495, on right: 403 495
figured_bass_alteration (276)
    on left: 480 481 482, on right: 486
figured_bass_modification (278)
    on left: 488 489 490 491, on right: 487
fingering (265)
    on left: 451, on right: 421 422 424
full_markup_list (301)
    on left: 547, on right: 16 31 88 124 137
function_arglist (210)
    on left: 285 286, on right: 46 324 412
function_arglist_skip_nonbackup (211)
    on left: 287 288, on right: 286 288
gen_text_def (264)
    on left: 447 448 449 450, on right: 430
grob_prop_path (234)
    on left: 367 368, on right: 101 103 371
grob_prop_spec (233)
    on left: 366, on right: 367 368
grouped_music_list (200)
    on left: 227 228, on right: 226 328 330 331
header_block (145)
    on left: 64, on right: 9 33 76
identifier_init (149)
    on left: 71 72 73 74 75, on right: 67 68 69 70
lilypond (132)
    on left: 4 5 6 7 8, on right: 1 5 6 7 8
lilypond_header (144)
    on left: 62, on right: 64 128 141 152
lilypond_header_body (143)
    on left: 58 59 60 61, on right: 59 60 61 62
lookup (134)
    on left: 20 21, on right: 26 39 42
lyric_element (284)
    on left: 502 503 504 505, on right: 506
lyric_element_music (285)
    on left: 506, on right: 176 181 253 303
lyric_mode_music (220)
    on left: 328 329, on right: 208 209 213 214
markup (327)
    on left: 594 595, on right: 568 576
markup_braced_list (314)
    on left: 566, on right: 560
markup_braced_list_body (315)
    on left: 567 568 569, on right: 566 568 569
markup_command_list (316)
    on left: 570, on right: 561
markup_composed_list (313)
    on left: 565, on right: 558
markup_head_1_item (321)
    on left: 583, on right: 584 585
markup_head_1_list (322)
    on left: 584 585, on right: 554 565 578 585 594
markup_list (310)
    on left: 558 559, on right: 547 553 569 571
markup_mode (303)
    on left: 548, on right: 105 549 550 552
markup_mode_word (304)
    on left: 549, on right: 70 551
markup_partial_function (319)
    on left: 577 578, on right: 105 552
markup_scm (308)
    on left: 557, on right: 562 593
markup_top (307)
    on left: 553 554 555, on right: 550
markup_uncomposed_list (311)
    on left: 560 561 562 564, on right: 559 565
markup_word (323)
    on left: 586 587, on right: 549 588
maybe_notemode_duration (268)
    on left: 462 463, on right: 464 498 507
mode_changed_music (222)
    on left: 330 331, on right: 224
mode_changing_head (223)
    on left: 332 333 334 335 336, on right: 330
multiplied_duration (271)
    on left: 467, on right: 54 182 249 282 306 463
multipliers (273)
    on left: 470 471 472, on right: 255 467 471 472
music (178)
    on left: 175 176 177, on right: 147 179 186 187
music_assign (182)
    on left: 184 185, on right: 45 82 159 175
music_bare (199)
    on left: 224 225 226, on right: 212
music_embedded (180)
    on left: 179 180 181 182, on right: 55 172
music_embedded_backup (181)
    on left: 183, on right: 180 181
music_function_call (218)
    on left: 324, on right: 210 409 416
music_function_chord_body (248)
    on left: 409 410 411, on right: 408
music_list (176)
    on left: 171 172 173, on right: 55 172 173 174 191
music_or_context_def (172)
    on left: 159 160, on right: 166
music_property_def (237)
    on left: 371 372 373 374, on right: 193
new_chord (286)
    on left: 507 508, on right: 499
new_lyrics (194)
    on left: 208 209, on right: 209 218 223
note_chord_element (244)
    on left: 401, on right: 400
number_expression (293)
    on left: 525 526 527, on right: 72 525 526
number_factor (295)
    on left: 531 532, on right: 528 529 530 531
number_term (294)
    on left: 528 529 530, on right: 525 526 527
octave_check (256)
    on left: 432 433, on right: 406 498
optional_context_mods (190)
    on left: 200, on right: 206 207 208 209 331
optional_id (219)
    on left: 325 326, on right: 206 207
optional_rest (281)
    on left: 496 497, on right: 498
output_def (169)
    on left: 154, on right: 19 38 80 148 153
output_def_head (170)
    on left: 155 156 157, on right: 158
output_def_head_with_mode_switch (171)
    on left: 158, on right: 161
paper_block (168)
    on left: 153, on right: 119 133
partial_markup (306)
    on left: 552, on right: 30 87
pitch (262)
    on left: 443 444, on right: 257 267 310 445 498
pitch_as_music (179)
    on left: 178, on right: 177 216
pitch_or_music (282)
    on left: 498 499, on right: 83 178 248 280 304 389
pitch_or_tonic_pitch (263)
    on left: 445 446, on right: 406
post_event (252)
    on left: 423 424, on right: 53 414
property_operation (227)
    on left: 343 344 345 346, on right: 362
property_path (226)
    on left: 342, on right: 68 69 73 74 368 394 395
questions (300)
    on left: 544 545, on right: 406 498 545
quotes (257)
    on left: 434 435 436, on right: 433 441 442 444
reparsed_rhythm (207)
    on left: 255, on right: 250 283 307
repeated_music (183)
    on left: 186 187, on right: 211
revert_arg (228)
    on left: 347, on right: 345 346 372
revert_arg_backup (229)
    on left: 348, on right: 347 350 351 352
revert_arg_part (230)
    on left: 349 350 351 352, on right: 348
scm_function_call (140)
    on left: 46, on right: 25 41 44
score_block (163)
    on left: 143, on right: 13 34 77 121 134
score_body (164)
    on left: 144 145, on right: 143 145 564 591
score_item (165)
    on left: 146 147 148, on right: 150
score_items (166)
    on left: 149 150 152, on right: 144 150 152
script_dir (267)
    on left: 459 460 461, on right: 105 106 107 416 419 420
sequential_music (184)
    on left: 188 189, on right: 228
simple_element (283)
    on left: 500 501, on right: 396
simple_markup (324)
    on left: 588 589, on right: 554 594 595
simple_markup_noword (325)
    on left: 591 592 593, on right: 555 589
simple_music (186)
    on left: 192 193 194, on right: 184
simple_revert_context (236)
    on left: 370, on right: 372
simultaneous_music (185)
    on left: 190 191, on right: 227
start_symbol (130)
    on left: 1 3, on right: 0
State 0
State 1
State 10
State 100
State 101
State 102
State 103
State 104
State 105
State 106
State 107
State 108
State 109
State 11
State 110
State 111
State 112
State 113
State 114
State 115
State 116
State 117
State 118
State 119
State 12
State 120
State 121
State 122
State 123
State 124
State 125
State 126
State 127
State 128
State 129
State 13
State 130
State 131
State 132
State 133
State 134
State 135
State 136
State 137
State 138
State 139
State 14
State 140
State 141
State 142
State 143
State 144
State 145
State 146
State 147
State 148
State 149
State 15
State 150
State 151
State 152
State 153
State 154
State 155
State 156
State 157
State 158
State 159
State 16
State 160
State 161
State 162
State 163
State 164
State 165
State 166
State 167
State 168
State 169
State 17
State 170
State 171
State 172
State 173
State 174
State 175
State 176
State 177
State 178
State 179
State 18
State 180
State 181
State 182
State 183
State 184
State 185
State 186
State 187
State 188
State 189
State 19
State 190
State 191
State 192
State 193
State 194
State 195
State 196
State 197
State 198
State 199
State 2
State 20
State 200
State 201
State 202
State 203
State 204
State 205
State 206
State 207
State 208
State 209
State 21
State 210
State 211
State 212
State 213
State 214
State 215
State 216
State 217
State 218
State 219
State 22
State 220
State 221
State 222
State 223
State 224
State 225
State 226
State 227
State 228
State 229
State 23
State 230
State 231
State 232
State 233
State 234
State 235
State 236
State 237
State 238
State 239
State 24
State 240
State 241
State 242
State 243
State 244
State 245
State 246
State 247
State 248
State 249
State 25
State 250
State 251
State 252
State 253
State 254
State 255
State 256
State 257
State 258
State 259
State 26
State 260
State 261
State 262
State 263
State 264
State 265
State 266
State 267
State 268
State 269
State 27
State 270
State 271
State 272
State 273
State 274
State 275
State 276
State 277
State 278
State 279
State 28
State 280
State 281
State 282
State 283
State 284
State 285
State 286
State 287
State 288
State 289
State 29
State 290
State 291
State 292
State 293
State 294
State 295
State 296
State 297
State 298
State 299
State 3
State 30
State 300
State 301
State 302
State 303
State 304
State 305
State 306
State 307
State 308
State 309
State 31
State 310
State 311
State 312
State 313
State 314
State 315
State 316
State 317
State 318
State 319
State 32
State 320
State 321
State 322
State 323
State 324
State 325
State 326
State 327
State 328
State 329
State 33
State 330
State 331
State 332
State 333
State 334
State 335
State 336
State 337
State 338
State 339
State 34
State 340
State 341
State 342
State 343
State 344
State 345
State 346
State 347
State 348
State 349
State 35
State 350
State 351
State 352
State 353
State 354
State 355
State 356
State 357
State 358
State 359
State 36
State 360
State 361
State 362
State 363
State 364
State 365
State 366
State 367
State 368
State 369
State 37
State 370
State 371
State 372
State 373
State 374
State 375
State 376
State 377
State 378
State 379
State 38
State 380
State 381
State 382
State 383
State 384
State 385
State 386
State 387
State 388
State 389
State 39
State 390
State 391
State 392
State 393
State 394
State 395
State 396
State 397
State 398
State 399
State 4
State 40
State 400
State 401
State 402
State 403
State 404
State 405
State 406
State 407
State 408
State 409
State 41
State 410
State 411
State 412
State 413
State 414
State 415
State 416
State 417
State 418
State 419
State 42
State 420
State 421
State 422
State 423
State 424
State 425
State 426
State 427
State 428
State 429
State 43
State 430
State 431
State 432
State 433
State 434
State 435
State 436
State 437
State 438
State 439
State 44
State 440
State 441
State 442
State 443
State 444
State 445
State 446
State 447
State 448
State 449
State 45
State 450
State 451
State 452
State 453
State 454
State 455
State 456
State 457
State 458
State 459
State 46
State 460
State 461
State 462
State 463
State 464
State 465
State 466
State 467
State 468
State 469
State 47
State 470
State 471
State 472
State 473
State 474
State 475
State 476
State 477
State 478
State 479
State 48
State 480
State 481
State 482
State 483
State 484
State 485
State 486
State 487
State 488
State 489
State 49
State 490
State 491
State 492
State 493
State 494
State 495
State 496
State 497
State 498
State 499
State 5
State 50
State 500
State 501
State 502
State 503
State 504
State 505
State 506
State 507
State 508
State 509
State 51
State 510
State 511
State 512
State 513
State 514
State 515
State 516
State 517
State 518
State 519
State 52
State 520
State 521
State 522
State 523
State 524
State 525
State 526
State 527
State 528
State 529
State 53
State 530
State 531
State 532
State 533
State 534
State 535
State 536
State 537
State 538
State 539
State 54
State 540
State 541
State 542
State 543
State 544
State 545
State 546
State 547
State 548
State 549
State 55
State 550
State 551
State 552
State 553
State 554
State 555
State 556
State 557
State 558
State 559
State 56
State 560
State 561
State 562
State 563
State 564
State 565
State 566
State 567
State 568
State 569
State 57
State 570
State 571
State 572
State 573
State 574
State 575
State 576
State 577
State 578
State 579
State 58
State 580
State 581
State 582
State 583
State 584
State 585
State 586
State 587
State 588
State 589
State 59
State 590
State 591
State 592
State 593
State 594
State 595
State 596
State 597
State 598
State 599
State 6
State 60
State 600
State 601
State 602
State 603
State 604
State 605
State 606
State 607
State 608
State 609
State 61
State 610
State 611
State 612
State 613
State 614
State 615
State 616
State 617
State 618
State 619
State 62
State 620
State 621
State 622
State 623
State 624
State 625
State 626
State 627
State 628
State 629
State 63
State 630
State 631
State 632
State 633
State 634
State 635
State 636
State 637
State 638
State 639
State 64
State 640
State 641
State 642
State 643
State 644
State 645
State 646
State 647
State 648
State 649
State 65
State 650
State 651
State 652
State 653
State 654
State 655
State 656
State 657
State 658
State 659
State 66
State 660
State 661
State 662
State 663
State 664
State 665
State 666
State 667
State 668
State 669
State 67
State 670
State 671
State 672
State 673
State 674
State 675
State 676
State 677
State 678
State 679
State 68
State 680
State 681
State 682
State 683
State 684
State 685
State 686
State 687
State 688
State 689
State 69
State 690
State 691
State 692
State 693
State 694
State 695
State 696
State 697
State 698
State 699
State 7
State 70
State 700
State 701
State 702
State 703
State 704
State 705
State 706
State 707
State 708
State 709
State 71
State 710
State 711
State 712
State 713
State 714
State 715
State 716
State 717
State 718
State 719
State 72
State 720
State 721
State 722
State 723
State 724
State 725
State 726
State 727
State 728
State 729
State 73
State 730
State 731
State 732
State 733
State 734
State 735
State 736
State 737
State 738
State 739
State 74
State 740
State 741
State 742
State 743
State 744
State 745
State 746
State 747
State 748
State 749
State 75
State 750
State 751
State 752
State 753
State 754
State 755
State 756
State 757
State 758
State 759
State 76
State 760
State 761
State 762
State 763
State 764
State 765
State 766
State 767
State 768
State 769
State 77
State 770
State 771
State 772
State 773
State 774
State 775
State 776
State 777
State 778
State 779
State 78
State 780
State 781
State 782
State 783
State 784
State 785
State 786
State 787
State 788
State 789
State 79
State 790
State 791
State 792
State 793
State 794
State 795
State 796
State 797
State 798
State 799
State 8
State 80
State 800
State 801
State 802
State 803
State 804
State 805
State 806
State 807
State 808
State 809
State 81
State 810
State 811
State 812
State 813
State 814
State 815
State 816
State 817
State 818
State 819
State 82
State 820
State 821
State 822
State 823
State 824
State 825
State 826
State 827
State 828
State 829
State 83
State 830
State 831
State 832
State 833
State 834
State 835
State 836
State 837
State 838
State 839
State 84
State 840
State 841
State 842
State 843
State 844
State 845
State 846
State 847
State 848
State 849
State 85
State 850
State 851
State 852
State 853
State 854
State 855
State 856
State 857
State 858
State 859
State 86
State 860
State 861
State 862
State 863
State 864
State 865
State 866
State 867
State 868
State 869
State 87
State 870
State 871
State 872
State 873
State 874
State 875
State 876
State 877
State 878
State 879
State 88
State 880
State 881
State 882
State 883
State 89
State 9
State 90
State 91
State 92
State 93
State 94
State 95
State 96
State 97
State 98
State 99
steno_duration (270)
    on left: 465 466, on right: 168 169 467
steno_pitch (260)
    on left: 441, on right: 443
step_number (291)
    on left: 520 521 522, on right: 518 519
step_numbers (290)
    on left: 518 519, on right: 516 519
string (238)
    on left: 375 376 377, on right: 85 393
string_number_event (253)
    on left: 425, on right: 426
sub_quotes (259)
    on left: 439 440, on right: 435 440
sup_quotes (258)
    on left: 437 438, on right: 436 438
symbol (241)
    on left: 385 386 387, on right: 206 207 214 341 343 344
symbol_list_arg (201)
    on left: 229 230 231, on right: 254 284 308 347
symbol_list_element (204)
    on left: 237 238, on right: 240
symbol_list_part_bare (205)
    on left: 239 240, on right: 73 74 235 394 395
tempo_event (175)
    on left: 168 169 170, on right: 399
tempo_range (292)
    on left: 523 524, on right: 168 169
text (239)
    on left: 378 379 380 381, on right: 169 170
tremolo_type (274)
    on left: 473 474, on right: 428
unsigned_number (298)
    on left: 539 540 541, on right: 186 187 523 524

LilyPond — Contributor’s Guide v2.19.83 (development-branch).