blob: f5a9f2295419d48489ab5d5ca86d38613148b1a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
|
bin/solfege
etc/solfege
share/applications/solfege.desktop
share/locale/cs/LC_MESSAGES/solfege.mo
share/locale/da/LC_MESSAGES/solfege.mo
share/locale/de/LC_MESSAGES/solfege.mo
share/locale/es/LC_MESSAGES/solfege.mo
share/locale/fi/LC_MESSAGES/solfege.mo
share/locale/fr/LC_MESSAGES/solfege.mo
share/locale/gl/LC_MESSAGES/solfege.mo
share/locale/hu/LC_MESSAGES/solfege.mo
share/locale/it/LC_MESSAGES/solfege.mo
share/locale/nb/LC_MESSAGES/solfege.mo
share/locale/nl/LC_MESSAGES/solfege.mo
share/locale/pl/LC_MESSAGES/solfege.mo
share/locale/pt_BR/LC_MESSAGES/solfege.mo
share/locale/ru/LC_MESSAGES/solfege.mo
share/locale/sv/LC_MESSAGES/solfege.mo
share/locale/tr/LC_MESSAGES/solfege.mo
share/locale/vi/LC_MESSAGES/solfege.mo
share/pixmaps/solfege.png
%%DATADIR%%/default.config
%%DATADIR%%/example-lesson-files/chord-satb
%%DATADIR%%/example-lesson-files/example-1
%%DATADIR%%/example-lesson-files/harmonic-progression-dictation
%%DATADIR%%/example-lesson-files/id-by-name-1
%%DATADIR%%/example-lesson-files/id-by-name-2
%%DATADIR%%/example-lesson-files/learn-min-major-1
%%DATADIR%%/example-lesson-files/learn-min-major-2
%%DATADIR%%/example-lesson-files/learn-min-major-3
%%DATADIR%%/example-lesson-files/sing-chord
%%DATADIR%%/example-lesson-files/very-easy-scale
%%DATADIR%%/example-lesson-files/very-easy-scale2
%%DATADIR%%/feta/feta20-accidentals--1.xpm
%%DATADIR%%/feta/feta20-accidentals--2.xpm
%%DATADIR%%/feta/feta20-accidentals-0.xpm
%%DATADIR%%/feta/feta20-accidentals-1.xpm
%%DATADIR%%/feta/feta20-accidentals-2.xpm
%%DATADIR%%/feta/feta20-clefs-C.xpm
%%DATADIR%%/feta/feta20-clefs-F.xpm
%%DATADIR%%/feta/feta20-clefs-G.xpm
%%DATADIR%%/feta/feta20-dots-dot.xpm
%%DATADIR%%/feta/feta20-flags-d3.xpm
%%DATADIR%%/feta/feta20-flags-d4.xpm
%%DATADIR%%/feta/feta20-flags-d5.xpm
%%DATADIR%%/feta/feta20-flags-d6.xpm
%%DATADIR%%/feta/feta20-flags-u3.xpm
%%DATADIR%%/feta/feta20-flags-u4.xpm
%%DATADIR%%/feta/feta20-flags-u5.xpm
%%DATADIR%%/feta/feta20-flags-u6.xpm
%%DATADIR%%/feta/feta20-noteheads-0.xpm
%%DATADIR%%/feta/feta20-noteheads-1.xpm
%%DATADIR%%/feta/feta20-noteheads-2.xpm
%%DATADIR%%/feta/feta20-number-0.xpm
%%DATADIR%%/feta/feta20-number-1.xpm
%%DATADIR%%/feta/feta20-number-2.xpm
%%DATADIR%%/feta/feta20-number-3.xpm
%%DATADIR%%/feta/feta20-number-4.xpm
%%DATADIR%%/feta/feta20-number-5.xpm
%%DATADIR%%/feta/feta20-number-6.xpm
%%DATADIR%%/feta/feta20-number-7.xpm
%%DATADIR%%/feta/feta20-number-8.xpm
%%DATADIR%%/feta/feta20-number-9.xpm
%%DATADIR%%/feta/feta20-rests--1.xpm
%%DATADIR%%/feta/feta20-rests--2.xpm
%%DATADIR%%/feta/feta20-rests--4.xpm
%%DATADIR%%/feta/feta20-rests-0.xpm
%%DATADIR%%/feta/feta20-rests-0o.xpm
%%DATADIR%%/feta/feta20-rests-1.xpm
%%DATADIR%%/feta/feta20-rests-1o.xpm
%%DATADIR%%/feta/feta20-rests-2.xpm
%%DATADIR%%/feta/feta20-rests-3.xpm
%%DATADIR%%/feta/feta20-rests-4.xpm
%%DATADIR%%/feta/feta20-rests-5.xpm
%%DATADIR%%/feta/feta20-rests-6.xpm
%%DATADIR%%/feta/feta20-rests-7.xpm
%%DATADIR%%/graphics/chord-voicing.png
%%DATADIR%%/graphics/chord.png
%%DATADIR%%/graphics/compare-intervals.png
%%DATADIR%%/graphics/dictation.png
%%DATADIR%%/graphics/double-flat.png
%%DATADIR%%/graphics/double-flat.svg
%%DATADIR%%/graphics/double-sharp.png
%%DATADIR%%/graphics/double-sharp.svg
%%DATADIR%%/graphics/erase.png
%%DATADIR%%/graphics/erase.svg
%%DATADIR%%/graphics/flat.png
%%DATADIR%%/graphics/flat.svg
%%DATADIR%%/graphics/happyface.png
%%DATADIR%%/graphics/harmonic-interval.png
%%DATADIR%%/graphics/harmonic-progression-dictation.png
%%DATADIR%%/graphics/holder.png
%%DATADIR%%/graphics/id-by-name.png
%%DATADIR%%/graphics/id-tone.png
%%DATADIR%%/graphics/identify-bpm.png
%%DATADIR%%/graphics/identify-chord.png
%%DATADIR%%/graphics/identify-scale.png
%%DATADIR%%/graphics/image-not-found.png
%%DATADIR%%/graphics/melodic-interval.png
%%DATADIR%%/graphics/natural.png
%%DATADIR%%/graphics/natural.svg
%%DATADIR%%/graphics/notehead.png
%%DATADIR%%/graphics/notehead.svg
%%DATADIR%%/graphics/rhythm-c12c12c12.png
%%DATADIR%%/graphics/rhythm-c12c12r12.png
%%DATADIR%%/graphics/rhythm-c12r12c12.png
%%DATADIR%%/graphics/rhythm-c16c16c16c16.png
%%DATADIR%%/graphics/rhythm-c16c16c16c16c16c16.png
%%DATADIR%%/graphics/rhythm-c16c16c16c16c8.png
%%DATADIR%%/graphics/rhythm-c16c16c4.png
%%DATADIR%%/graphics/rhythm-c16c16c8.png
%%DATADIR%%/graphics/rhythm-c16c16c8c16c16.png
%%DATADIR%%/graphics/rhythm-c16c16c8c8.png
%%DATADIR%%/graphics/rhythm-c16c8..png
%%DATADIR%%/graphics/rhythm-c16c8c16.png
%%DATADIR%%/graphics/rhythm-c4..png
%%DATADIR%%/graphics/rhythm-c4.png
%%DATADIR%%/graphics/rhythm-c4c16c16.png
%%DATADIR%%/graphics/rhythm-c4c8.png
%%DATADIR%%/graphics/rhythm-c8.c16.png
%%DATADIR%%/graphics/rhythm-c8c16c16.png
%%DATADIR%%/graphics/rhythm-c8c16c16c16c16.png
%%DATADIR%%/graphics/rhythm-c8c16c16c8.png
%%DATADIR%%/graphics/rhythm-c8c4.png
%%DATADIR%%/graphics/rhythm-c8c8.png
%%DATADIR%%/graphics/rhythm-c8c8c16c16.png
%%DATADIR%%/graphics/rhythm-c8c8c8.png
%%DATADIR%%/graphics/rhythm-r12c12c12.png
%%DATADIR%%/graphics/rhythm-r12c12r12.png
%%DATADIR%%/graphics/rhythm-r12r12c12.png
%%DATADIR%%/graphics/rhythm-r16c16c16c16.png
%%DATADIR%%/graphics/rhythm-r16c16c8.png
%%DATADIR%%/graphics/rhythm-r16c8..png
%%DATADIR%%/graphics/rhythm-r16c8c16.png
%%DATADIR%%/graphics/rhythm-r4.png
%%DATADIR%%/graphics/rhythm-r8c16c16.png
%%DATADIR%%/graphics/rhythm-r8c8.png
%%DATADIR%%/graphics/rhythm-r8r16c16.png
%%DATADIR%%/graphics/rhythm-wrong.png
%%DATADIR%%/graphics/rhythm.png
%%DATADIR%%/graphics/sadface.png
%%DATADIR%%/graphics/sharp.png
%%DATADIR%%/graphics/sharp.svg
%%DATADIR%%/graphics/sing-chord.png
%%DATADIR%%/graphics/sing-interval.png
%%DATADIR%%/graphics/solfege.png
%%DATADIR%%/graphics/solfege.svg
%%DATADIR%%/graphics/solfege.xpm
%%DATADIR%%/graphics/test-sound.png
%%DATADIR%%/graphics/twelve-tone.png
%%DATADIR%%/help/C/appendix-not-documentation.html
%%DATADIR%%/help/C/bug-reporting.html
%%DATADIR%%/help/C/chord-module.html
%%DATADIR%%/help/C/chord.html
%%DATADIR%%/help/C/compareintervals-module.html
%%DATADIR%%/help/C/dictation-module.html
%%DATADIR%%/help/C/dictation.html
%%DATADIR%%/help/C/ear-training-test-printout-editor.html
%%DATADIR%%/help/C/elembuilder-module.html
%%DATADIR%%/help/C/elembuilder.html
%%DATADIR%%/help/C/extending-solfege.html
%%DATADIR%%/help/C/figures/chord.png
%%DATADIR%%/help/C/figures/chordname-example.png
%%DATADIR%%/help/C/figures/dictation.png
%%DATADIR%%/help/C/figures/elembuilder-harmonic-progressions.png
%%DATADIR%%/help/C/figures/id-interval-buttons-thirds.png
%%DATADIR%%/help/C/figures/id-interval-piano.png
%%DATADIR%%/help/C/figures/idbyname-chords.png
%%DATADIR%%/help/C/figures/idbyname-intonation.png
%%DATADIR%%/help/C/figures/identifybpm.png
%%DATADIR%%/help/C/figures/idtone.png
%%DATADIR%%/help/C/figures/nameinterval.png
%%DATADIR%%/help/C/figures/plabel-Cmaj7.png
%%DATADIR%%/help/C/figures/preferences-external-programs.png
%%DATADIR%%/help/C/figures/preferences-gui.png
%%DATADIR%%/help/C/figures/preferences-midi.png
%%DATADIR%%/help/C/figures/preferences-practise.png
%%DATADIR%%/help/C/figures/preferences-sound-setup-win32.png
%%DATADIR%%/help/C/figures/preferences-sound-setup.png
%%DATADIR%%/help/C/figures/preferences-user.png
%%DATADIR%%/help/C/figures/progressionlabel-example-1.png
%%DATADIR%%/help/C/figures/rhythm.png
%%DATADIR%%/help/C/figures/rnc-example.png
%%DATADIR%%/help/C/figures/singchord.png
%%DATADIR%%/help/C/figures/singinterval.png
%%DATADIR%%/help/C/figures/trainingset-editor.png
%%DATADIR%%/help/C/figures/twelvetone.png
%%DATADIR%%/help/C/gpl.html
%%DATADIR%%/help/C/harmonicinterval-module.html
%%DATADIR%%/help/C/harmonicinterval.html
%%DATADIR%%/help/C/idbyname-cadences.html
%%DATADIR%%/help/C/idbyname-chords.html
%%DATADIR%%/help/C/idbyname-intonation.html
%%DATADIR%%/help/C/idbyname-module.html
%%DATADIR%%/help/C/identifybpm.html
%%DATADIR%%/help/C/idproperty-module.html
%%DATADIR%%/help/C/idproperty.html
%%DATADIR%%/help/C/idtone-module.html
%%DATADIR%%/help/C/idtone.html
%%DATADIR%%/help/C/index.html
%%DATADIR%%/help/C/inverting-intervals.html
%%DATADIR%%/help/C/lesson-files.html
%%DATADIR%%/help/C/one-big-page.html
%%DATADIR%%/help/C/ly/inverting-intervals.png
%%DATADIR%%/help/C/ly/theory-intervals-1.png
%%DATADIR%%/help/C/ly/theory-intervals-fifths-1.png
%%DATADIR%%/help/C/ly/theory-intervals-fifths-2.png
%%DATADIR%%/help/C/ly/theory-intervals-fifths.png
%%DATADIR%%/help/C/ly/theory-intervals-fourths.png
%%DATADIR%%/help/C/ly/theory-intervals-seconds-1.png
%%DATADIR%%/help/C/ly/theory-intervals-seconds-2.png
%%DATADIR%%/help/C/ly/theory-intervals-seconds-3.png
%%DATADIR%%/help/C/ly/theory-intervals-seconds.png
%%DATADIR%%/help/C/ly/theory-intervals-sevenths.png
%%DATADIR%%/help/C/ly/theory-intervals-sixths.png
%%DATADIR%%/help/C/ly/theory-intervals-thirds.png
%%DATADIR%%/help/C/melodicinterval-module.html
%%DATADIR%%/help/C/melodicinterval.html
%%DATADIR%%/help/C/midi-instrument-names.html
%%DATADIR%%/help/C/mpd-module.html
%%DATADIR%%/help/C/music-theory.html
%%DATADIR%%/help/C/nameinterval-module.html
%%DATADIR%%/help/C/nameinterval.html
%%DATADIR%%/help/C/online-resources.html
%%DATADIR%%/help/C/preferences-window.html
%%DATADIR%%/help/C/rhythm-module.html
%%DATADIR%%/help/C/rhythm.html
%%DATADIR%%/help/C/rhythmtapping-module.html
%%DATADIR%%/help/C/rhythmtapping2-module.html
%%DATADIR%%/help/C/rhythmtapping2.html
%%DATADIR%%/help/C/scales/aug.html
%%DATADIR%%/help/C/scales/beb.html
%%DATADIR%%/help/C/scales/blu.html
%%DATADIR%%/help/C/scales/dha.html
%%DATADIR%%/help/C/scales/dim.html
%%DATADIR%%/help/C/scales/ham.html
%%DATADIR%%/help/C/scales/har.html
%%DATADIR%%/help/C/scales/hun.html
%%DATADIR%%/help/C/scales/images/modes/chords/dha1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/dha2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/dha4c.png
%%DATADIR%%/help/C/scales/images/modes/chords/dha5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/dha6c.png
%%DATADIR%%/help/C/scales/images/modes/chords/dim2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/ham1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/ham2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/ham3c2.png
%%DATADIR%%/help/C/scales/images/modes/chords/ham4c.png
%%DATADIR%%/help/C/scales/images/modes/chords/ham5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/ham6c.png
%%DATADIR%%/help/C/scales/images/modes/chords/ham7c.png
%%DATADIR%%/help/C/scales/images/modes/chords/har1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/har2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/har3c.png
%%DATADIR%%/help/C/scales/images/modes/chords/har4c.png
%%DATADIR%%/help/C/scales/images/modes/chords/har5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/har6c.png
%%DATADIR%%/help/C/scales/images/modes/chords/har7c.png
%%DATADIR%%/help/C/scales/images/modes/chords/hun1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/hun3c.png
%%DATADIR%%/help/C/scales/images/modes/chords/hun5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/hun6c.png
%%DATADIR%%/help/C/scales/images/modes/chords/maj1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/maj2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/maj3c.png
%%DATADIR%%/help/C/scales/images/modes/chords/maj4c.png
%%DATADIR%%/help/C/scales/images/modes/chords/maj5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/maj6c.png
%%DATADIR%%/help/C/scales/images/modes/chords/maj7c.png
%%DATADIR%%/help/C/scales/images/modes/chords/mel1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/mel2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/mel3c.png
%%DATADIR%%/help/C/scales/images/modes/chords/mel4c.png
%%DATADIR%%/help/C/scales/images/modes/chords/mel5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/mel6c.png
%%DATADIR%%/help/C/scales/images/modes/chords/mel7c2.png
%%DATADIR%%/help/C/scales/images/modes/chords/nea1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nea2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nea3c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nea4c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nea5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nea6c2.png
%%DATADIR%%/help/C/scales/images/modes/chords/nea7c2.png
%%DATADIR%%/help/C/scales/images/modes/chords/nem1c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nem2c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nem3c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nem4c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nem5c.png
%%DATADIR%%/help/C/scales/images/modes/chords/nem6c.png
%%DATADIR%%/help/C/scales/images/modes/chords/who1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug1d.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug1db.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug1eb.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug2cd.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug2d.png
%%DATADIR%%/help/C/scales/images/modes/scales/aug2dd.png
%%DATADIR%%/help/C/scales/images/modes/scales/beb1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/beb2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/beb3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/beb4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/beb5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/blu1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha2db.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha3c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha3e.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha4f.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha6ab.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha7b.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dha7c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/dim1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dim1d.png
%%DATADIR%%/help/C/scales/images/modes/scales/dim1db.png
%%DATADIR%%/help/C/scales/images/modes/scales/dim2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/dim2cd.png
%%DATADIR%%/help/C/scales/images/modes/scales/dim2d.png
%%DATADIR%%/help/C/scales/images/modes/scales/eni1c-d.png
%%DATADIR%%/help/C/scales/images/modes/scales/eni1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham2d.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham3c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham3e.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham4f.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham6ab.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham7b.png
%%DATADIR%%/help/C/scales/images/modes/scales/ham7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/har1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/har2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/har2d.png
%%DATADIR%%/help/C/scales/images/modes/scales/har3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/har3eb.png
%%DATADIR%%/help/C/scales/images/modes/scales/har4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/har4f.png
%%DATADIR%%/help/C/scales/images/modes/scales/har5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/har5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/har6ab.png
%%DATADIR%%/help/C/scales/images/modes/scales/har6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/har7b.png
%%DATADIR%%/help/C/scales/images/modes/scales/har7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun2c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun2dd.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun3e.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun4c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun4fd.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun6a.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun7bb.png
%%DATADIR%%/help/C/scales/images/modes/scales/hun7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj2d.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj3e.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj4f.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj6a.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj7b.png
%%DATADIR%%/help/C/scales/images/modes/scales/maj7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel1c-d.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel2d.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel3eb.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel4f.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel6a.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel7b.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/mel7c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea2db.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea3eb.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea4f.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea6a.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea6c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea7b.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nea7c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem2db.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem3eb.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem4f.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem5g.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem6ab.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem6c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem7b.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem7c.png
%%DATADIR%%/help/C/scales/images/modes/scales/nem7c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen2c.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen2d.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen3c.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen3e.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen4c.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen4g.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen5a.png
%%DATADIR%%/help/C/scales/images/modes/scales/pen5c.png
%%DATADIR%%/help/C/scales/images/modes/scales/who1c.png
%%DATADIR%%/help/C/scales/images/modes/scales/who1c2.png
%%DATADIR%%/help/C/scales/images/modes/scales/who1db.png
%%DATADIR%%/help/C/scales/images/quadriads/c7+5.png
%%DATADIR%%/help/C/scales/images/quadriads/c7-5.png
%%DATADIR%%/help/C/scales/images/quadriads/c7.png
%%DATADIR%%/help/C/scales/images/quadriads/c^+5.png
%%DATADIR%%/help/C/scales/images/quadriads/c^-5.png
%%DATADIR%%/help/C/scales/images/quadriads/c^.png
%%DATADIR%%/help/C/scales/images/quadriads/cdim.png
%%DATADIR%%/help/C/scales/images/quadriads/cm7+5.png
%%DATADIR%%/help/C/scales/images/quadriads/cm7-5.png
%%DATADIR%%/help/C/scales/images/quadriads/cm7.png
%%DATADIR%%/help/C/scales/images/quadriads/cm^+5.png
%%DATADIR%%/help/C/scales/images/quadriads/cm^-5.png
%%DATADIR%%/help/C/scales/images/quadriads/cm^.png
%%DATADIR%%/help/C/scales/images/triads/abau.png
%%DATADIR%%/help/C/scales/images/triads/cau.png
%%DATADIR%%/help/C/scales/images/triads/cau1.png
%%DATADIR%%/help/C/scales/images/triads/cau1o.png
%%DATADIR%%/help/C/scales/images/triads/cau2.png
%%DATADIR%%/help/C/scales/images/triads/cau2o.png
%%DATADIR%%/help/C/scales/images/triads/cauo.png
%%DATADIR%%/help/C/scales/images/triads/cdi-fs8.png
%%DATADIR%%/help/C/scales/images/triads/cdi.png
%%DATADIR%%/help/C/scales/images/triads/cdi1.png
%%DATADIR%%/help/C/scales/images/triads/cdi1o.png
%%DATADIR%%/help/C/scales/images/triads/cdi2.png
%%DATADIR%%/help/C/scales/images/triads/cdi2o.png
%%DATADIR%%/help/C/scales/images/triads/cdio.png
%%DATADIR%%/help/C/scales/images/triads/cma.png
%%DATADIR%%/help/C/scales/images/triads/cma1.png
%%DATADIR%%/help/C/scales/images/triads/cma1o.png
%%DATADIR%%/help/C/scales/images/triads/cma2.png
%%DATADIR%%/help/C/scales/images/triads/cma2o.png
%%DATADIR%%/help/C/scales/images/triads/cmao.png
%%DATADIR%%/help/C/scales/images/triads/cmi.png
%%DATADIR%%/help/C/scales/images/triads/cmi1.png
%%DATADIR%%/help/C/scales/images/triads/cmi1o.png
%%DATADIR%%/help/C/scales/images/triads/cmi2.png
%%DATADIR%%/help/C/scales/images/triads/cmi2o.png
%%DATADIR%%/help/C/scales/images/triads/cmio.png
%%DATADIR%%/help/C/scales/images/triads/dau.png
%%DATADIR%%/help/C/scales/images/triads/dbau.png
%%DATADIR%%/help/C/scales/images/triads/eau.png
%%DATADIR%%/help/C/scales/images/triads/ebau.png
%%DATADIR%%/help/C/scales/maj.html
%%DATADIR%%/help/C/scales/mel.html
%%DATADIR%%/help/C/scales/modes.html
%%DATADIR%%/help/C/scales/nea.html
%%DATADIR%%/help/C/scales/nem.html
%%DATADIR%%/help/C/scales/pen.html
%%DATADIR%%/help/C/scales/sim.html
%%DATADIR%%/help/C/scales/who.html
%%DATADIR%%/help/C/scales.html
%%DATADIR%%/help/C/singanswer-module.html
%%DATADIR%%/help/C/singchord-module.html
%%DATADIR%%/help/C/singchord.html
%%DATADIR%%/help/C/singinterval-module.html
%%DATADIR%%/help/C/singinterval.html
%%DATADIR%%/help/C/solfege-exercise-helps.html
%%DATADIR%%/help/C/solfege-intro.html
%%DATADIR%%/help/C/theory-intervals.html
%%DATADIR%%/help/C/trainingset-editor.html
%%DATADIR%%/help/C/twelvetone.html
%%DATADIR%%/help/C/welcome.html
%%DATADIR%%/help/fr/appendix-not-documentation.html
%%DATADIR%%/help/fr/bug-reporting.html
%%DATADIR%%/help/fr/chord-module.html
%%DATADIR%%/help/fr/chord.html
%%DATADIR%%/help/fr/compareintervals-module.html
%%DATADIR%%/help/fr/dictation-module.html
%%DATADIR%%/help/fr/dictation.html
%%DATADIR%%/help/fr/ear-training-test-printout-editor.html
%%DATADIR%%/help/fr/elembuilder-module.html
%%DATADIR%%/help/fr/elembuilder.html
%%DATADIR%%/help/fr/extending-solfege.html
%%DATADIR%%/help/fr/figures/chord.png
%%DATADIR%%/help/fr/figures/dictation.png
%%DATADIR%%/help/fr/figures/id-interval-buttons-thirds.png
%%DATADIR%%/help/fr/figures/id-interval-piano.png
%%DATADIR%%/help/fr/figures/idbyname-chords.png
%%DATADIR%%/help/fr/figures/idbyname-intonation.png
%%DATADIR%%/help/fr/figures/identifybpm.png
%%DATADIR%%/help/fr/figures/idtone.png
%%DATADIR%%/help/fr/figures/preferences-gui.png
%%DATADIR%%/help/fr/figures/preferences-midi.png
%%DATADIR%%/help/fr/figures/preferences-practise.png
%%DATADIR%%/help/fr/figures/preferences-sound-setup.png
%%DATADIR%%/help/fr/figures/preferences-user.png
%%DATADIR%%/help/fr/figures/rhythm.png
%%DATADIR%%/help/fr/figures/singchord.png
%%DATADIR%%/help/fr/figures/singinterval.png
%%DATADIR%%/help/fr/figures/twelvetone.png
%%DATADIR%%/help/fr/gpl.html
%%DATADIR%%/help/fr/harmonicinterval-module.html
%%DATADIR%%/help/fr/harmonicinterval.html
%%DATADIR%%/help/fr/idbyname-cadences.html
%%DATADIR%%/help/fr/idbyname-chords.html
%%DATADIR%%/help/fr/idbyname-intonation.html
%%DATADIR%%/help/fr/idbyname-module.html
%%DATADIR%%/help/fr/identifybpm.html
%%DATADIR%%/help/fr/idproperty-module.html
%%DATADIR%%/help/fr/idproperty.html
%%DATADIR%%/help/fr/idtone-module.html
%%DATADIR%%/help/fr/idtone.html
%%DATADIR%%/help/fr/index.html
%%DATADIR%%/help/fr/inverting-intervals.html
%%DATADIR%%/help/fr/lesson-files.html
%%DATADIR%%/help/fr/melodicinterval-module.html
%%DATADIR%%/help/fr/melodicinterval.html
%%DATADIR%%/help/fr/midi-instrument-names.html
%%DATADIR%%/help/fr/mpd-module.html
%%DATADIR%%/help/fr/music-theory.html
%%DATADIR%%/help/fr/nameinterval-module.html
%%DATADIR%%/help/fr/nameinterval.html
%%DATADIR%%/help/fr/online-resources.html
%%DATADIR%%/help/fr/one-big-page.html
%%DATADIR%%/help/fr/preferences-window.html
%%DATADIR%%/help/fr/rhythm-module.html
%%DATADIR%%/help/fr/rhythm.html
%%DATADIR%%/help/fr/rhythmtapping-module.html
%%DATADIR%%/help/fr/rhythmtapping2-module.html
%%DATADIR%%/help/fr/rhythmtapping2.html
%%DATADIR%%/help/fr/scales.html
%%DATADIR%%/help/fr/singanswer-module.html
%%DATADIR%%/help/fr/singchord-module.html
%%DATADIR%%/help/fr/singchord.html
%%DATADIR%%/help/fr/singinterval-module.html
%%DATADIR%%/help/fr/singinterval.html
%%DATADIR%%/help/fr/solfege-exercise-helps.html
%%DATADIR%%/help/fr/solfege-intro.html
%%DATADIR%%/help/fr/theory-intervals.html
%%DATADIR%%/help/fr/trainingset-editor.html
%%DATADIR%%/help/fr/twelvetone.html
%%DATADIR%%/help/fr/welcome.html
%%DATADIR%%/help/gl/appendix-not-documentation.html
%%DATADIR%%/help/gl/bug-reporting.html
%%DATADIR%%/help/gl/chord-module.html
%%DATADIR%%/help/gl/chord.html
%%DATADIR%%/help/gl/compareintervals-module.html
%%DATADIR%%/help/gl/dictation-module.html
%%DATADIR%%/help/gl/dictation.html
%%DATADIR%%/help/gl/ear-training-test-printout-editor.html
%%DATADIR%%/help/gl/elembuilder-module.html
%%DATADIR%%/help/gl/elembuilder.html
%%DATADIR%%/help/gl/extending-solfege.html
%%DATADIR%%/help/gl/gpl.html
%%DATADIR%%/help/gl/harmonicinterval-module.html
%%DATADIR%%/help/gl/harmonicinterval.html
%%DATADIR%%/help/gl/idbyname-cadences.html
%%DATADIR%%/help/gl/idbyname-chords.html
%%DATADIR%%/help/gl/idbyname-intonation.html
%%DATADIR%%/help/gl/idbyname-module.html
%%DATADIR%%/help/gl/identifybpm.html
%%DATADIR%%/help/gl/idproperty-module.html
%%DATADIR%%/help/gl/idproperty.html
%%DATADIR%%/help/gl/idtone-module.html
%%DATADIR%%/help/gl/idtone.html
%%DATADIR%%/help/gl/index.html
%%DATADIR%%/help/gl/inverting-intervals.html
%%DATADIR%%/help/gl/lesson-files.html
%%DATADIR%%/help/gl/melodicinterval-module.html
%%DATADIR%%/help/gl/melodicinterval.html
%%DATADIR%%/help/gl/midi-instrument-names.html
%%DATADIR%%/help/gl/mpd-module.html
%%DATADIR%%/help/gl/music-theory.html
%%DATADIR%%/help/gl/nameinterval-module.html
%%DATADIR%%/help/gl/nameinterval.html
%%DATADIR%%/help/gl/one-big-page.html
%%DATADIR%%/help/gl/online-resources.html
%%DATADIR%%/help/gl/preferences-window.html
%%DATADIR%%/help/gl/rhythm-module.html
%%DATADIR%%/help/gl/rhythm.html
%%DATADIR%%/help/gl/rhythmtapping-module.html
%%DATADIR%%/help/gl/rhythmtapping2-module.html
%%DATADIR%%/help/gl/rhythmtapping2.html
%%DATADIR%%/help/gl/scales.html
%%DATADIR%%/help/gl/singanswer-module.html
%%DATADIR%%/help/gl/singchord-module.html
%%DATADIR%%/help/gl/singchord.html
%%DATADIR%%/help/gl/singinterval-module.html
%%DATADIR%%/help/gl/singinterval.html
%%DATADIR%%/help/gl/solfege-exercise-helps.html
%%DATADIR%%/help/gl/solfege-intro.html
%%DATADIR%%/help/gl/theory-intervals.html
%%DATADIR%%/help/gl/trainingset-editor.html
%%DATADIR%%/help/gl/twelvetone.html
%%DATADIR%%/help/gl/welcome.html
%%DATADIR%%/help/nb/appendix-not-documentation.html
%%DATADIR%%/help/nb/bug-reporting.html
%%DATADIR%%/help/nb/chord-module.html
%%DATADIR%%/help/nb/chord.html
%%DATADIR%%/help/nb/compareintervals-module.html
%%DATADIR%%/help/nb/dictation-module.html
%%DATADIR%%/help/nb/dictation.html
%%DATADIR%%/help/nb/ear-training-test-printout-editor.html
%%DATADIR%%/help/nb/elembuilder-module.html
%%DATADIR%%/help/nb/elembuilder.html
%%DATADIR%%/help/nb/extending-solfege.html
%%DATADIR%%/help/nb/figures/chord.png
%%DATADIR%%/help/nb/figures/dictation.png
%%DATADIR%%/help/nb/figures/id-interval-buttons-thirds.png
%%DATADIR%%/help/nb/figures/id-interval-piano.png
%%DATADIR%%/help/nb/figures/idbyname-chords.png
%%DATADIR%%/help/nb/figures/idbyname-intonation.png
%%DATADIR%%/help/nb/figures/identifybpm.png
%%DATADIR%%/help/nb/figures/idtone.png
%%DATADIR%%/help/nb/figures/preferences-gui.png
%%DATADIR%%/help/nb/figures/preferences-midi.png
%%DATADIR%%/help/nb/figures/preferences-practise.png
%%DATADIR%%/help/nb/figures/preferences-sound-setup.png
%%DATADIR%%/help/nb/figures/preferences-user.png
%%DATADIR%%/help/nb/figures/rhythm.png
%%DATADIR%%/help/nb/figures/singchord.png
%%DATADIR%%/help/nb/figures/singinterval.png
%%DATADIR%%/help/nb/figures/twelvetone.png
%%DATADIR%%/help/nb/gpl.html
%%DATADIR%%/help/nb/harmonicinterval-module.html
%%DATADIR%%/help/nb/harmonicinterval.html
%%DATADIR%%/help/nb/idbyname-cadences.html
%%DATADIR%%/help/nb/idbyname-chords.html
%%DATADIR%%/help/nb/idbyname-intonation.html
%%DATADIR%%/help/nb/idbyname-module.html
%%DATADIR%%/help/nb/identifybpm.html
%%DATADIR%%/help/nb/idproperty-module.html
%%DATADIR%%/help/nb/idproperty.html
%%DATADIR%%/help/nb/idtone-module.html
%%DATADIR%%/help/nb/idtone.html
%%DATADIR%%/help/nb/index.html
%%DATADIR%%/help/nb/inverting-intervals.html
%%DATADIR%%/help/nb/lesson-files.html
%%DATADIR%%/help/nb/melodicinterval-module.html
%%DATADIR%%/help/nb/melodicinterval.html
%%DATADIR%%/help/nb/midi-instrument-names.html
%%DATADIR%%/help/nb/mpd-module.html
%%DATADIR%%/help/nb/music-theory.html
%%DATADIR%%/help/nb/nameinterval-module.html
%%DATADIR%%/help/nb/nameinterval.html
%%DATADIR%%/help/nb/online-resources.html
%%DATADIR%%/help/nb/one-big-page.html
%%DATADIR%%/help/nb/preferences-window.html
%%DATADIR%%/help/nb/rhythm-module.html
%%DATADIR%%/help/nb/rhythm.html
%%DATADIR%%/help/nb/rhythmtapping-module.html
%%DATADIR%%/help/nb/rhythmtapping2-module.html
%%DATADIR%%/help/nb/rhythmtapping2.html
%%DATADIR%%/help/nb/scales.html
%%DATADIR%%/help/nb/singanswer-module.html
%%DATADIR%%/help/nb/singchord-module.html
%%DATADIR%%/help/nb/singchord.html
%%DATADIR%%/help/nb/singinterval-module.html
%%DATADIR%%/help/nb/singinterval.html
%%DATADIR%%/help/nb/solfege-exercise-helps.html
%%DATADIR%%/help/nb/solfege-intro.html
%%DATADIR%%/help/nb/theory-intervals.html
%%DATADIR%%/help/nb/trainingset-editor.html
%%DATADIR%%/help/nb/twelvetone.html
%%DATADIR%%/help/nb/welcome.html
%%DATADIR%%/help/nl/appendix-not-documentation.html
%%DATADIR%%/help/nl/bug-reporting.html
%%DATADIR%%/help/nl/chord-module.html
%%DATADIR%%/help/nl/chord.html
%%DATADIR%%/help/nl/compareintervals-module.html
%%DATADIR%%/help/nl/dictation-module.html
%%DATADIR%%/help/nl/dictation.html
%%DATADIR%%/help/nl/ear-training-test-printout-editor.html
%%DATADIR%%/help/nl/elembuilder-module.html
%%DATADIR%%/help/nl/elembuilder.html
%%DATADIR%%/help/nl/extending-solfege.html
%%DATADIR%%/help/nl/gpl.html
%%DATADIR%%/help/nl/harmonicinterval-module.html
%%DATADIR%%/help/nl/harmonicinterval.html
%%DATADIR%%/help/nl/idbyname-cadences.html
%%DATADIR%%/help/nl/idbyname-chords.html
%%DATADIR%%/help/nl/idbyname-intonation.html
%%DATADIR%%/help/nl/idbyname-module.html
%%DATADIR%%/help/nl/identifybpm.html
%%DATADIR%%/help/nl/idproperty-module.html
%%DATADIR%%/help/nl/idproperty.html
%%DATADIR%%/help/nl/idtone-module.html
%%DATADIR%%/help/nl/idtone.html
%%DATADIR%%/help/nl/index.html
%%DATADIR%%/help/nl/inverting-intervals.html
%%DATADIR%%/help/nl/lesson-files.html
%%DATADIR%%/help/nl/melodicinterval-module.html
%%DATADIR%%/help/nl/melodicinterval.html
%%DATADIR%%/help/nl/midi-instrument-names.html
%%DATADIR%%/help/nl/mpd-module.html
%%DATADIR%%/help/nl/music-theory.html
%%DATADIR%%/help/nl/nameinterval-module.html
%%DATADIR%%/help/nl/nameinterval.html
%%DATADIR%%/help/nl/online-resources.html
%%DATADIR%%/help/nl/preferences-window.html
%%DATADIR%%/help/nl/rhythm-module.html
%%DATADIR%%/help/nl/rhythm.html
%%DATADIR%%/help/nl/rhythmtapping-module.html
%%DATADIR%%/help/nl/rhythmtapping2-module.html
%%DATADIR%%/help/nl/rhythmtapping2.html
%%DATADIR%%/help/nl/scales.html
%%DATADIR%%/help/nl/singanswer-module.html
%%DATADIR%%/help/nl/singchord-module.html
%%DATADIR%%/help/nl/singchord.html
%%DATADIR%%/help/nl/singinterval-module.html
%%DATADIR%%/help/nl/singinterval.html
%%DATADIR%%/help/nl/solfege-exercise-helps.html
%%DATADIR%%/help/nl/solfege-intro.html
%%DATADIR%%/help/nl/theory-intervals.html
%%DATADIR%%/help/nl/trainingset-editor.html
%%DATADIR%%/help/nl/twelvetone.html
%%DATADIR%%/help/nl/welcome.html
%%DATADIR%%/help/pt_BR/appendix-not-documentation.html
%%DATADIR%%/help/pt_BR/bug-reporting.html
%%DATADIR%%/help/pt_BR/chord-module.html
%%DATADIR%%/help/pt_BR/chord.html
%%DATADIR%%/help/pt_BR/compareintervals-module.html
%%DATADIR%%/help/pt_BR/dictation-module.html
%%DATADIR%%/help/pt_BR/dictation.html
%%DATADIR%%/help/pt_BR/ear-training-test-printout-editor.html
%%DATADIR%%/help/pt_BR/elembuilder-module.html
%%DATADIR%%/help/pt_BR/elembuilder.html
%%DATADIR%%/help/pt_BR/extending-solfege.html
%%DATADIR%%/help/pt_BR/figures/chord.png
%%DATADIR%%/help/pt_BR/figures/dictation.png
%%DATADIR%%/help/pt_BR/figures/id-interval-buttons-thirds.png
%%DATADIR%%/help/pt_BR/figures/id-interval-piano.png
%%DATADIR%%/help/pt_BR/figures/idbyname-chords.png
%%DATADIR%%/help/pt_BR/figures/identifybpm.png
%%DATADIR%%/help/pt_BR/figures/idtone.png
%%DATADIR%%/help/pt_BR/figures/preferences-gui.png
%%DATADIR%%/help/pt_BR/figures/preferences-midi.png
%%DATADIR%%/help/pt_BR/figures/preferences-practise.png
%%DATADIR%%/help/pt_BR/figures/preferences-sound-setup.png
%%DATADIR%%/help/pt_BR/figures/preferences-user.png
%%DATADIR%%/help/pt_BR/figures/rhythm.png
%%DATADIR%%/help/pt_BR/figures/singchord.png
%%DATADIR%%/help/pt_BR/figures/singinterval.png
%%DATADIR%%/help/pt_BR/figures/twelvetone.png
%%DATADIR%%/help/pt_BR/gpl.html
%%DATADIR%%/help/pt_BR/harmonicinterval-module.html
%%DATADIR%%/help/pt_BR/harmonicinterval.html
%%DATADIR%%/help/pt_BR/idbyname-cadences.html
%%DATADIR%%/help/pt_BR/idbyname-chords.html
%%DATADIR%%/help/pt_BR/idbyname-intonation.html
%%DATADIR%%/help/pt_BR/idbyname-module.html
%%DATADIR%%/help/pt_BR/identifybpm.html
%%DATADIR%%/help/pt_BR/idproperty-module.html
%%DATADIR%%/help/pt_BR/idproperty.html
%%DATADIR%%/help/pt_BR/idtone-module.html
%%DATADIR%%/help/pt_BR/idtone.html
%%DATADIR%%/help/pt_BR/index.html
%%DATADIR%%/help/pt_BR/inverting-intervals.html
%%DATADIR%%/help/pt_BR/lesson-files.html
%%DATADIR%%/help/pt_BR/melodicinterval-module.html
%%DATADIR%%/help/pt_BR/melodicinterval.html
%%DATADIR%%/help/pt_BR/midi-instrument-names.html
%%DATADIR%%/help/pt_BR/mpd-module.html
%%DATADIR%%/help/pt_BR/music-theory.html
%%DATADIR%%/help/pt_BR/nameinterval-module.html
%%DATADIR%%/help/pt_BR/nameinterval.html
%%DATADIR%%/help/pt_BR/online-resources.html
%%DATADIR%%/help/pt_BR/one-big-page.html
%%DATADIR%%/help/pt_BR/preferences-window.html
%%DATADIR%%/help/pt_BR/rhythm-module.html
%%DATADIR%%/help/pt_BR/rhythm.html
%%DATADIR%%/help/pt_BR/rhythmtapping-module.html
%%DATADIR%%/help/pt_BR/rhythmtapping2-module.html
%%DATADIR%%/help/pt_BR/rhythmtapping2.html
%%DATADIR%%/help/pt_BR/scales.html
%%DATADIR%%/help/pt_BR/singanswer-module.html
%%DATADIR%%/help/pt_BR/singchord-module.html
%%DATADIR%%/help/pt_BR/singchord.html
%%DATADIR%%/help/pt_BR/singinterval-module.html
%%DATADIR%%/help/pt_BR/singinterval.html
%%DATADIR%%/help/pt_BR/solfege-exercise-helps.html
%%DATADIR%%/help/pt_BR/solfege-intro.html
%%DATADIR%%/help/pt_BR/theory-intervals.html
%%DATADIR%%/help/pt_BR/trainingset-editor.html
%%DATADIR%%/help/pt_BR/twelvetone.html
%%DATADIR%%/help/pt_BR/welcome.html
%%DATADIR%%/help/ru/appendix-not-documentation.html
%%DATADIR%%/help/ru/bug-reporting.html
%%DATADIR%%/help/ru/chord-module.html
%%DATADIR%%/help/ru/chord.html
%%DATADIR%%/help/ru/compareintervals-module.html
%%DATADIR%%/help/ru/dictation-module.html
%%DATADIR%%/help/ru/dictation.html
%%DATADIR%%/help/ru/ear-training-test-printout-editor.html
%%DATADIR%%/help/ru/elembuilder-module.html
%%DATADIR%%/help/ru/elembuilder.html
%%DATADIR%%/help/ru/extending-solfege.html
%%DATADIR%%/help/ru/gpl.html
%%DATADIR%%/help/ru/harmonicinterval-module.html
%%DATADIR%%/help/ru/harmonicinterval.html
%%DATADIR%%/help/ru/idbyname-cadences.html
%%DATADIR%%/help/ru/idbyname-chords.html
%%DATADIR%%/help/ru/idbyname-intonation.html
%%DATADIR%%/help/ru/idbyname-module.html
%%DATADIR%%/help/ru/identifybpm.html
%%DATADIR%%/help/ru/idproperty-module.html
%%DATADIR%%/help/ru/idproperty.html
%%DATADIR%%/help/ru/idtone-module.html
%%DATADIR%%/help/ru/idtone.html
%%DATADIR%%/help/ru/index.html
%%DATADIR%%/help/ru/inverting-intervals.html
%%DATADIR%%/help/ru/lesson-files.html
%%DATADIR%%/help/ru/melodicinterval-module.html
%%DATADIR%%/help/ru/melodicinterval.html
%%DATADIR%%/help/ru/midi-instrument-names.html
%%DATADIR%%/help/ru/mpd-module.html
%%DATADIR%%/help/ru/music-theory.html
%%DATADIR%%/help/ru/nameinterval-module.html
%%DATADIR%%/help/ru/nameinterval.html
%%DATADIR%%/help/ru/online-resources.html
%%DATADIR%%/help/ru/one-big-page.html
%%DATADIR%%/help/ru/preferences-window.html
%%DATADIR%%/help/ru/rhythm-module.html
%%DATADIR%%/help/ru/rhythm.html
%%DATADIR%%/help/ru/rhythmtapping-module.html
%%DATADIR%%/help/ru/rhythmtapping2-module.html
%%DATADIR%%/help/ru/rhythmtapping2.html
%%DATADIR%%/help/ru/scales.html
%%DATADIR%%/help/ru/singanswer-module.html
%%DATADIR%%/help/ru/singchord-module.html
%%DATADIR%%/help/ru/singchord.html
%%DATADIR%%/help/ru/singinterval-module.html
%%DATADIR%%/help/ru/singinterval.html
%%DATADIR%%/help/ru/solfege-exercise-helps.html
%%DATADIR%%/help/ru/solfege-intro.html
%%DATADIR%%/help/ru/theory-intervals.html
%%DATADIR%%/help/ru/trainingset-editor.html
%%DATADIR%%/help/ru/twelvetone.html
%%DATADIR%%/help/ru/welcome.html
%%DATADIR%%/help/style.css
%%DATADIR%%/help/tr/appendix-not-documentation.html
%%DATADIR%%/help/tr/bug-reporting.html
%%DATADIR%%/help/tr/chord-module.html
%%DATADIR%%/help/tr/chord.html
%%DATADIR%%/help/tr/compareintervals-module.html
%%DATADIR%%/help/tr/dictation-module.html
%%DATADIR%%/help/tr/dictation.html
%%DATADIR%%/help/tr/ear-training-test-printout-editor.html
%%DATADIR%%/help/tr/elembuilder-module.html
%%DATADIR%%/help/tr/elembuilder.html
%%DATADIR%%/help/tr/extending-solfege.html
%%DATADIR%%/help/tr/figures/chord.png
%%DATADIR%%/help/tr/figures/dictation.png
%%DATADIR%%/help/tr/figures/id-interval-buttons-thirds.png
%%DATADIR%%/help/tr/figures/id-interval-piano.png
%%DATADIR%%/help/tr/figures/idbyname-chords.png
%%DATADIR%%/help/tr/figures/idbyname-intonation.png
%%DATADIR%%/help/tr/figures/identifybpm.png
%%DATADIR%%/help/tr/figures/idtone.png
%%DATADIR%%/help/tr/figures/preferences-gui.png
%%DATADIR%%/help/tr/figures/preferences-midi.png
%%DATADIR%%/help/tr/figures/preferences-practise.png
%%DATADIR%%/help/tr/figures/preferences-sound-setup.png
%%DATADIR%%/help/tr/figures/preferences-user.png
%%DATADIR%%/help/tr/figures/rhythm.png
%%DATADIR%%/help/tr/figures/singchord.png
%%DATADIR%%/help/tr/figures/singinterval.png
%%DATADIR%%/help/tr/figures/twelvetone.png
%%DATADIR%%/help/tr/gpl.html
%%DATADIR%%/help/tr/harmonicinterval-module.html
%%DATADIR%%/help/tr/harmonicinterval.html
%%DATADIR%%/help/tr/idbyname-cadences.html
%%DATADIR%%/help/tr/idbyname-chords.html
%%DATADIR%%/help/tr/idbyname-intonation.html
%%DATADIR%%/help/tr/idbyname-module.html
%%DATADIR%%/help/tr/identifybpm.html
%%DATADIR%%/help/tr/idproperty-module.html
%%DATADIR%%/help/tr/idproperty.html
%%DATADIR%%/help/tr/idtone-module.html
%%DATADIR%%/help/tr/idtone.html
%%DATADIR%%/help/tr/index.html
%%DATADIR%%/help/tr/inverting-intervals.html
%%DATADIR%%/help/tr/lesson-files.html
%%DATADIR%%/help/tr/melodicinterval-module.html
%%DATADIR%%/help/tr/melodicinterval.html
%%DATADIR%%/help/tr/midi-instrument-names.html
%%DATADIR%%/help/tr/mpd-module.html
%%DATADIR%%/help/tr/music-theory.html
%%DATADIR%%/help/tr/nameinterval-module.html
%%DATADIR%%/help/tr/nameinterval.html
%%DATADIR%%/help/tr/online-resources.html
%%DATADIR%%/help/tr/one-big-page.html
%%DATADIR%%/help/tr/preferences-window.html
%%DATADIR%%/help/tr/rhythm-module.html
%%DATADIR%%/help/tr/rhythm.html
%%DATADIR%%/help/tr/rhythmtapping-module.html
%%DATADIR%%/help/tr/rhythmtapping2-module.html
%%DATADIR%%/help/tr/rhythmtapping2.html
%%DATADIR%%/help/tr/scales.html
%%DATADIR%%/help/tr/singanswer-module.html
%%DATADIR%%/help/tr/singchord-module.html
%%DATADIR%%/help/tr/singchord.html
%%DATADIR%%/help/tr/singinterval-module.html
%%DATADIR%%/help/tr/singinterval.html
%%DATADIR%%/help/tr/solfege-exercise-helps.html
%%DATADIR%%/help/tr/solfege-intro.html
%%DATADIR%%/help/tr/theory-intervals.html
%%DATADIR%%/help/tr/trainingset-editor.html
%%DATADIR%%/help/tr/twelvetone.html
%%DATADIR%%/help/tr/welcome.html
%%DATADIR%%/help-menu.xml
%%DATADIR%%/helpbrowser.xml
%%DATADIR%%/learningtrees/csound-tree.txt
%%DATADIR%%/learningtrees/debugtree.txt
%%DATADIR%%/learningtrees/learningtree.txt
%%DATADIR%%/learningtrees/mma
%%DATADIR%%/lesson-files/altered-1
%%DATADIR%%/lesson-files/altered-2
%%DATADIR%%/lesson-files/barnesanger
%%DATADIR%%/lesson-files/besifring
%%DATADIR%%/lesson-files/bin/csound-play-harmonic-interval.sh
%%DATADIR%%/lesson-files/bpm
%%DATADIR%%/lesson-files/cadense-1
%%DATADIR%%/lesson-files/chord-7b9-maj79
%%DATADIR%%/lesson-files/chord-dim-aug
%%DATADIR%%/lesson-files/chord-dim-aug-min-major
%%DATADIR%%/lesson-files/chord-m7-7
%%DATADIR%%/lesson-files/chord-m7-7-inv
%%DATADIR%%/lesson-files/chord-m7-7-maj7-m7b5-dim7
%%DATADIR%%/lesson-files/chord-m9-9
%%DATADIR%%/lesson-files/chord-m9-9-7b9-maj79
%%DATADIR%%/lesson-files/chord-maj7-m7b5-dim7
%%DATADIR%%/lesson-files/chord-min-major
%%DATADIR%%/lesson-files/chord-min-major-7
%%DATADIR%%/lesson-files/chord-min-major-close-open
%%DATADIR%%/lesson-files/chord-min-major-inv
%%DATADIR%%/lesson-files/chord-voicing-test
%%DATADIR%%/lesson-files/compare-intervals
%%DATADIR%%/lesson-files/compare-intervals-harmonic
%%DATADIR%%/lesson-files/compare-intervals-harmonic-10
%%DATADIR%%/lesson-files/compare-intervals-harmonic-2
%%DATADIR%%/lesson-files/compare-intervals-harmonic-2-3
%%DATADIR%%/lesson-files/compare-intervals-harmonic-3
%%DATADIR%%/lesson-files/compare-intervals-harmonic-4-5
%%DATADIR%%/lesson-files/compare-intervals-harmonic-4-5-8
%%DATADIR%%/lesson-files/compare-intervals-harmonic-6
%%DATADIR%%/lesson-files/compare-intervals-harmonic-6-7
%%DATADIR%%/lesson-files/compare-intervals-harmonic-7
%%DATADIR%%/lesson-files/compare-intervals-harmonic-7-9
%%DATADIR%%/lesson-files/compare-intervals-harmonic-9
%%DATADIR%%/lesson-files/compare-intervals-harmonic-tritonus-7
%%DATADIR%%/lesson-files/csound-fifth-0.97
%%DATADIR%%/lesson-files/csound-fifth-0.98
%%DATADIR%%/lesson-files/csound-fifth-0.99
%%DATADIR%%/lesson-files/csound-fifth-0.995
%%DATADIR%%/lesson-files/csound-fifth-0.996
%%DATADIR%%/lesson-files/csound-fifth-0.997
%%DATADIR%%/lesson-files/csound-fifth-0.998
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj2-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj2-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj2-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj2-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj2-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj2-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj2-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj2-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj3-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj3-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj3-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj3-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj3-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj3-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj3-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj3-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj6-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj6-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj6-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj6-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj6-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj6-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj6-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj6-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj7-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj7-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj7-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj7-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj7-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj7-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj7-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-maj7-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min2-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min2-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min2-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min2-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min2-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min2-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min2-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min2-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min3-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min3-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min3-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min3-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min3-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min3-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min3-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min3-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min6-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min6-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min6-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min6-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min6-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min6-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min6-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min6-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min7-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min7-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min7-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min7-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min7-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min7-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min7-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-min7-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p4-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p4-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p4-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p4-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p4-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p4-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p4-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p4-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p5-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p5-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p5-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p5-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p5-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p5-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p5-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-p5-8cent
%%DATADIR%%/lesson-files/csound-intonation-maj2-10cent
%%DATADIR%%/lesson-files/csound-intonation-maj2-15cent
%%DATADIR%%/lesson-files/csound-intonation-maj2-20cent
%%DATADIR%%/lesson-files/csound-intonation-maj2-30cent
%%DATADIR%%/lesson-files/csound-intonation-maj2-40cent
%%DATADIR%%/lesson-files/csound-intonation-maj2-5cent
%%DATADIR%%/lesson-files/csound-intonation-maj2-6cent
%%DATADIR%%/lesson-files/csound-intonation-maj2-8cent
%%DATADIR%%/lesson-files/csound-intonation-maj3-10cent
%%DATADIR%%/lesson-files/csound-intonation-maj3-15cent
%%DATADIR%%/lesson-files/csound-intonation-maj3-20cent
%%DATADIR%%/lesson-files/csound-intonation-maj3-30cent
%%DATADIR%%/lesson-files/csound-intonation-maj3-40cent
%%DATADIR%%/lesson-files/csound-intonation-maj3-5cent
%%DATADIR%%/lesson-files/csound-intonation-maj3-6cent
%%DATADIR%%/lesson-files/csound-intonation-maj3-8cent
%%DATADIR%%/lesson-files/csound-intonation-maj6-10cent
%%DATADIR%%/lesson-files/csound-intonation-maj6-15cent
%%DATADIR%%/lesson-files/csound-intonation-maj6-20cent
%%DATADIR%%/lesson-files/csound-intonation-maj6-30cent
%%DATADIR%%/lesson-files/csound-intonation-maj6-40cent
%%DATADIR%%/lesson-files/csound-intonation-maj6-5cent
%%DATADIR%%/lesson-files/csound-intonation-maj6-6cent
%%DATADIR%%/lesson-files/csound-intonation-maj6-8cent
%%DATADIR%%/lesson-files/csound-intonation-maj7-10cent
%%DATADIR%%/lesson-files/csound-intonation-maj7-15cent
%%DATADIR%%/lesson-files/csound-intonation-maj7-20cent
%%DATADIR%%/lesson-files/csound-intonation-maj7-30cent
%%DATADIR%%/lesson-files/csound-intonation-maj7-40cent
%%DATADIR%%/lesson-files/csound-intonation-maj7-5cent
%%DATADIR%%/lesson-files/csound-intonation-maj7-6cent
%%DATADIR%%/lesson-files/csound-intonation-maj7-8cent
%%DATADIR%%/lesson-files/csound-intonation-min2-10cent
%%DATADIR%%/lesson-files/csound-intonation-min2-15cent
%%DATADIR%%/lesson-files/csound-intonation-min2-20cent
%%DATADIR%%/lesson-files/csound-intonation-min2-30cent
%%DATADIR%%/lesson-files/csound-intonation-min2-40cent
%%DATADIR%%/lesson-files/csound-intonation-min2-5cent
%%DATADIR%%/lesson-files/csound-intonation-min2-6cent
%%DATADIR%%/lesson-files/csound-intonation-min2-8cent
%%DATADIR%%/lesson-files/csound-intonation-min3-10cent
%%DATADIR%%/lesson-files/csound-intonation-min3-15cent
%%DATADIR%%/lesson-files/csound-intonation-min3-20cent
%%DATADIR%%/lesson-files/csound-intonation-min3-30cent
%%DATADIR%%/lesson-files/csound-intonation-min3-40cent
%%DATADIR%%/lesson-files/csound-intonation-min3-5cent
%%DATADIR%%/lesson-files/csound-intonation-min3-6cent
%%DATADIR%%/lesson-files/csound-intonation-min3-8cent
%%DATADIR%%/lesson-files/csound-intonation-min6-10cent
%%DATADIR%%/lesson-files/csound-intonation-min6-15cent
%%DATADIR%%/lesson-files/csound-intonation-min6-20cent
%%DATADIR%%/lesson-files/csound-intonation-min6-30cent
%%DATADIR%%/lesson-files/csound-intonation-min6-40cent
%%DATADIR%%/lesson-files/csound-intonation-min6-5cent
%%DATADIR%%/lesson-files/csound-intonation-min6-6cent
%%DATADIR%%/lesson-files/csound-intonation-min6-8cent
%%DATADIR%%/lesson-files/csound-intonation-min7-10cent
%%DATADIR%%/lesson-files/csound-intonation-min7-15cent
%%DATADIR%%/lesson-files/csound-intonation-min7-20cent
%%DATADIR%%/lesson-files/csound-intonation-min7-30cent
%%DATADIR%%/lesson-files/csound-intonation-min7-40cent
%%DATADIR%%/lesson-files/csound-intonation-min7-5cent
%%DATADIR%%/lesson-files/csound-intonation-min7-6cent
%%DATADIR%%/lesson-files/csound-intonation-min7-8cent
%%DATADIR%%/lesson-files/csound-intonation-p4-10cent
%%DATADIR%%/lesson-files/csound-intonation-p4-15cent
%%DATADIR%%/lesson-files/csound-intonation-p4-20cent
%%DATADIR%%/lesson-files/csound-intonation-p4-30cent
%%DATADIR%%/lesson-files/csound-intonation-p4-40cent
%%DATADIR%%/lesson-files/csound-intonation-p4-5cent
%%DATADIR%%/lesson-files/csound-intonation-p4-6cent
%%DATADIR%%/lesson-files/csound-intonation-p4-8cent
%%DATADIR%%/lesson-files/csound-intonation-p5-10cent
%%DATADIR%%/lesson-files/csound-intonation-p5-15cent
%%DATADIR%%/lesson-files/csound-intonation-p5-20cent
%%DATADIR%%/lesson-files/csound-intonation-p5-30cent
%%DATADIR%%/lesson-files/csound-intonation-p5-40cent
%%DATADIR%%/lesson-files/csound-intonation-p5-5cent
%%DATADIR%%/lesson-files/csound-intonation-p5-6cent
%%DATADIR%%/lesson-files/csound-intonation-p5-8cent
%%DATADIR%%/lesson-files/csound-intonation-M2-10cent
%%DATADIR%%/lesson-files/csound-intonation-M2-15cent
%%DATADIR%%/lesson-files/csound-intonation-M2-20cent
%%DATADIR%%/lesson-files/csound-intonation-M2-30cent
%%DATADIR%%/lesson-files/csound-intonation-M2-40cent
%%DATADIR%%/lesson-files/csound-intonation-M2-5cent
%%DATADIR%%/lesson-files/csound-intonation-M2-6cent
%%DATADIR%%/lesson-files/csound-intonation-M2-8cent
%%DATADIR%%/lesson-files/csound-intonation-M3-10cent
%%DATADIR%%/lesson-files/csound-intonation-M3-15cent
%%DATADIR%%/lesson-files/csound-intonation-M3-20cent
%%DATADIR%%/lesson-files/csound-intonation-M3-30cent
%%DATADIR%%/lesson-files/csound-intonation-M3-40cent
%%DATADIR%%/lesson-files/csound-intonation-M3-5cent
%%DATADIR%%/lesson-files/csound-intonation-M3-6cent
%%DATADIR%%/lesson-files/csound-intonation-M3-8cent
%%DATADIR%%/lesson-files/csound-intonation-M6-10cent
%%DATADIR%%/lesson-files/csound-intonation-M6-15cent
%%DATADIR%%/lesson-files/csound-intonation-M6-20cent
%%DATADIR%%/lesson-files/csound-intonation-M6-30cent
%%DATADIR%%/lesson-files/csound-intonation-M6-40cent
%%DATADIR%%/lesson-files/csound-intonation-M6-5cent
%%DATADIR%%/lesson-files/csound-intonation-M6-6cent
%%DATADIR%%/lesson-files/csound-intonation-M6-8cent
%%DATADIR%%/lesson-files/csound-intonation-M7-10cent
%%DATADIR%%/lesson-files/csound-intonation-M7-15cent
%%DATADIR%%/lesson-files/csound-intonation-M7-20cent
%%DATADIR%%/lesson-files/csound-intonation-M7-30cent
%%DATADIR%%/lesson-files/csound-intonation-M7-40cent
%%DATADIR%%/lesson-files/csound-intonation-M7-5cent
%%DATADIR%%/lesson-files/csound-intonation-M7-6cent
%%DATADIR%%/lesson-files/csound-intonation-M7-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M2-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M2-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M2-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M2-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M2-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M2-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M2-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M2-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M3-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M3-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M3-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M3-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M3-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M3-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M3-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M3-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M6-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M6-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M6-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M6-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M6-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M6-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M6-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M6-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M7-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M7-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M7-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M7-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M7-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M7-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M7-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-M7-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m2-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m2-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m2-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m2-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m2-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m2-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m2-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m2-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m3-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m3-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m3-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m3-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m3-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m3-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m3-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m3-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m6-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m6-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m6-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m6-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m6-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m6-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m6-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m6-8cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m7-10cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m7-15cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m7-20cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m7-30cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m7-40cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m7-5cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m7-6cent
%%DATADIR%%/lesson-files/csound-intonation-harmonic-m7-8cent
%%DATADIR%%/lesson-files/csound-intonation-m2-10cent
%%DATADIR%%/lesson-files/csound-intonation-m2-15cent
%%DATADIR%%/lesson-files/csound-intonation-m2-20cent
%%DATADIR%%/lesson-files/csound-intonation-m2-30cent
%%DATADIR%%/lesson-files/csound-intonation-m2-40cent
%%DATADIR%%/lesson-files/csound-intonation-m2-5cent
%%DATADIR%%/lesson-files/csound-intonation-m2-6cent
%%DATADIR%%/lesson-files/csound-intonation-m2-8cent
%%DATADIR%%/lesson-files/csound-intonation-m3-10cent
%%DATADIR%%/lesson-files/csound-intonation-m3-15cent
%%DATADIR%%/lesson-files/csound-intonation-m3-20cent
%%DATADIR%%/lesson-files/csound-intonation-m3-30cent
%%DATADIR%%/lesson-files/csound-intonation-m3-40cent
%%DATADIR%%/lesson-files/csound-intonation-m3-5cent
%%DATADIR%%/lesson-files/csound-intonation-m3-6cent
%%DATADIR%%/lesson-files/csound-intonation-m3-8cent
%%DATADIR%%/lesson-files/csound-intonation-m6-10cent
%%DATADIR%%/lesson-files/csound-intonation-m6-15cent
%%DATADIR%%/lesson-files/csound-intonation-m6-20cent
%%DATADIR%%/lesson-files/csound-intonation-m6-30cent
%%DATADIR%%/lesson-files/csound-intonation-m6-40cent
%%DATADIR%%/lesson-files/csound-intonation-m6-5cent
%%DATADIR%%/lesson-files/csound-intonation-m6-6cent
%%DATADIR%%/lesson-files/csound-intonation-m6-8cent
%%DATADIR%%/lesson-files/csound-intonation-m7-10cent
%%DATADIR%%/lesson-files/csound-intonation-m7-15cent
%%DATADIR%%/lesson-files/csound-intonation-m7-20cent
%%DATADIR%%/lesson-files/csound-intonation-m7-30cent
%%DATADIR%%/lesson-files/csound-intonation-m7-40cent
%%DATADIR%%/lesson-files/csound-intonation-m7-5cent
%%DATADIR%%/lesson-files/csound-intonation-m7-6cent
%%DATADIR%%/lesson-files/csound-intonation-m7-8cent
%%DATADIR%%/lesson-files/diatonic-1
%%DATADIR%%/lesson-files/diatonic-2
%%DATADIR%%/lesson-files/fifth-small-pure-0.99
%%DATADIR%%/lesson-files/harmonic-intervals
%%DATADIR%%/lesson-files/harmonic-intervals-10
%%DATADIR%%/lesson-files/harmonic-intervals-2
%%DATADIR%%/lesson-files/harmonic-intervals-2-3
%%DATADIR%%/lesson-files/harmonic-intervals-2-to-8
%%DATADIR%%/lesson-files/harmonic-intervals-3
%%DATADIR%%/lesson-files/harmonic-intervals-4-5
%%DATADIR%%/lesson-files/harmonic-intervals-4-5-8
%%DATADIR%%/lesson-files/harmonic-intervals-6
%%DATADIR%%/lesson-files/harmonic-intervals-6-7
%%DATADIR%%/lesson-files/harmonic-intervals-7
%%DATADIR%%/lesson-files/harmonic-intervals-7-9
%%DATADIR%%/lesson-files/harmonic-intervals-9
%%DATADIR%%/lesson-files/harmonic-intervals-self-config
%%DATADIR%%/lesson-files/harmonic-intervals-tritonus-7
%%DATADIR%%/lesson-files/hear-tones-1
%%DATADIR%%/lesson-files/hear-tones-2
%%DATADIR%%/lesson-files/hear-tones-3
%%DATADIR%%/lesson-files/hear-tones-4
%%DATADIR%%/lesson-files/hear-tones-5
%%DATADIR%%/lesson-files/hear-tones-6
%%DATADIR%%/lesson-files/hear-tones-triads
%%DATADIR%%/lesson-files/hear-tones-triads-difficult
%%DATADIR%%/lesson-files/hear-tones-triads-easy
%%DATADIR%%/lesson-files/id-tone
%%DATADIR%%/lesson-files/id-tone-cde-10
%%DATADIR%%/lesson-files/id-tone-cde-11
%%DATADIR%%/lesson-files/id-tone-cde-12
%%DATADIR%%/lesson-files/id-tone-cde-3
%%DATADIR%%/lesson-files/id-tone-cde-4
%%DATADIR%%/lesson-files/id-tone-cde-5
%%DATADIR%%/lesson-files/id-tone-cde-6
%%DATADIR%%/lesson-files/id-tone-cde-7
%%DATADIR%%/lesson-files/id-tone-cde-8
%%DATADIR%%/lesson-files/id-tone-cde-9
%%DATADIR%%/lesson-files/include/interval-elements
%%DATADIR%%/lesson-files/include/jazz-progression-elements
%%DATADIR%%/lesson-files/include/mma-grooves
%%DATADIR%%/lesson-files/include/progression-elements
%%DATADIR%%/lesson-files/include/sc-master
%%DATADIR%%/lesson-files/interval_in_key_maj
%%DATADIR%%/lesson-files/interval_in_key_min
%%DATADIR%%/lesson-files/jsb-inventions
%%DATADIR%%/lesson-files/melodic-intervals
%%DATADIR%%/lesson-files/melodic-intervals-10
%%DATADIR%%/lesson-files/melodic-intervals-2
%%DATADIR%%/lesson-files/melodic-intervals-2-3
%%DATADIR%%/lesson-files/melodic-intervals-2-to-8
%%DATADIR%%/lesson-files/melodic-intervals-3
%%DATADIR%%/lesson-files/melodic-intervals-4-5
%%DATADIR%%/lesson-files/melodic-intervals-4-5-8
%%DATADIR%%/lesson-files/melodic-intervals-6
%%DATADIR%%/lesson-files/melodic-intervals-6-7
%%DATADIR%%/lesson-files/melodic-intervals-7
%%DATADIR%%/lesson-files/melodic-intervals-7-9
%%DATADIR%%/lesson-files/melodic-intervals-9
%%DATADIR%%/lesson-files/melodic-intervals-down
%%DATADIR%%/lesson-files/melodic-intervals-down-10
%%DATADIR%%/lesson-files/melodic-intervals-down-2
%%DATADIR%%/lesson-files/melodic-intervals-down-2-3
%%DATADIR%%/lesson-files/melodic-intervals-down-2-to-8
%%DATADIR%%/lesson-files/melodic-intervals-down-3
%%DATADIR%%/lesson-files/melodic-intervals-down-4-5
%%DATADIR%%/lesson-files/melodic-intervals-down-4-5-8
%%DATADIR%%/lesson-files/melodic-intervals-down-6
%%DATADIR%%/lesson-files/melodic-intervals-down-6-7
%%DATADIR%%/lesson-files/melodic-intervals-down-7
%%DATADIR%%/lesson-files/melodic-intervals-down-7-9
%%DATADIR%%/lesson-files/melodic-intervals-down-9
%%DATADIR%%/lesson-files/melodic-intervals-down-tritonus-7
%%DATADIR%%/lesson-files/melodic-intervals-self-config
%%DATADIR%%/lesson-files/melodic-intervals-tritonus-7
%%DATADIR%%/lesson-files/melodic-intervals-up
%%DATADIR%%/lesson-files/melodic-intervals-up-10
%%DATADIR%%/lesson-files/melodic-intervals-up-2
%%DATADIR%%/lesson-files/melodic-intervals-up-2-3
%%DATADIR%%/lesson-files/melodic-intervals-up-2-to-8
%%DATADIR%%/lesson-files/melodic-intervals-up-3
%%DATADIR%%/lesson-files/melodic-intervals-up-4-5
%%DATADIR%%/lesson-files/melodic-intervals-up-4-5-8
%%DATADIR%%/lesson-files/melodic-intervals-up-6
%%DATADIR%%/lesson-files/melodic-intervals-up-6-7
%%DATADIR%%/lesson-files/melodic-intervals-up-7
%%DATADIR%%/lesson-files/melodic-intervals-up-7-9
%%DATADIR%%/lesson-files/melodic-intervals-up-9
%%DATADIR%%/lesson-files/melodic-intervals-up-tritonus-7
%%DATADIR%%/lesson-files/mma-1
%%DATADIR%%/lesson-files/mma-2
%%DATADIR%%/lesson-files/mma-3
%%DATADIR%%/lesson-files/nameinterval-1
%%DATADIR%%/lesson-files/nameinterval-2
%%DATADIR%%/lesson-files/nameinterval-fifths
%%DATADIR%%/lesson-files/nameinterval-fourths
%%DATADIR%%/lesson-files/nameinterval-octave
%%DATADIR%%/lesson-files/nameinterval-seconds
%%DATADIR%%/lesson-files/nameinterval-sevenths
%%DATADIR%%/lesson-files/nameinterval-sixths
%%DATADIR%%/lesson-files/nameinterval-thirds
%%DATADIR%%/lesson-files/nameinterval-unison
%%DATADIR%%/lesson-files/progression-1
%%DATADIR%%/lesson-files/progression-2
%%DATADIR%%/lesson-files/progression-atte
%%DATADIR%%/lesson-files/progression-x
%%DATADIR%%/lesson-files/rhythm-all
%%DATADIR%%/lesson-files/rhythm-easy
%%DATADIR%%/lesson-files/rhythm-mid
%%DATADIR%%/lesson-files/rhythm-self-config-binary
%%DATADIR%%/lesson-files/rhythm-self-config-ternary
%%DATADIR%%/lesson-files/rhythm-ternary
%%DATADIR%%/lesson-files/rhythmtapping2-self-config-binary
%%DATADIR%%/lesson-files/rhythmtapping2-self-config-ternary
%%DATADIR%%/lesson-files/sc-6tones
%%DATADIR%%/lesson-files/sc-8tones
%%DATADIR%%/lesson-files/sc-beb
%%DATADIR%%/lesson-files/sc-beb-a
%%DATADIR%%/lesson-files/sc-beb-d
%%DATADIR%%/lesson-files/sc-beb-elem
%%DATADIR%%/lesson-files/sc-beb-name
%%DATADIR%%/lesson-files/sc-beb-s
%%DATADIR%%/lesson-files/sc-church
%%DATADIR%%/lesson-files/sc-dha
%%DATADIR%%/lesson-files/sc-dha-a
%%DATADIR%%/lesson-files/sc-dha-d
%%DATADIR%%/lesson-files/sc-dha-elem
%%DATADIR%%/lesson-files/sc-dha-f
%%DATADIR%%/lesson-files/sc-dha-g
%%DATADIR%%/lesson-files/sc-dha-name
%%DATADIR%%/lesson-files/sc-dha-p
%%DATADIR%%/lesson-files/sc-dha-s
%%DATADIR%%/lesson-files/sc-dha-t
%%DATADIR%%/lesson-files/sc-dom
%%DATADIR%%/lesson-files/sc-dom-jazz
%%DATADIR%%/lesson-files/sc-east
%%DATADIR%%/lesson-files/sc-greek
%%DATADIR%%/lesson-files/sc-hal
%%DATADIR%%/lesson-files/sc-hal-jazz
%%DATADIR%%/lesson-files/sc-ham
%%DATADIR%%/lesson-files/sc-ham-a
%%DATADIR%%/lesson-files/sc-ham-d
%%DATADIR%%/lesson-files/sc-ham-elem
%%DATADIR%%/lesson-files/sc-ham-f
%%DATADIR%%/lesson-files/sc-ham-g
%%DATADIR%%/lesson-files/sc-ham-name
%%DATADIR%%/lesson-files/sc-ham-p
%%DATADIR%%/lesson-files/sc-ham-s
%%DATADIR%%/lesson-files/sc-ham-t
%%DATADIR%%/lesson-files/sc-har
%%DATADIR%%/lesson-files/sc-har-a
%%DATADIR%%/lesson-files/sc-har-d
%%DATADIR%%/lesson-files/sc-har-elem
%%DATADIR%%/lesson-files/sc-har-f
%%DATADIR%%/lesson-files/sc-har-g
%%DATADIR%%/lesson-files/sc-har-name
%%DATADIR%%/lesson-files/sc-har-p
%%DATADIR%%/lesson-files/sc-har-s
%%DATADIR%%/lesson-files/sc-har-t
%%DATADIR%%/lesson-files/sc-hum-g
%%DATADIR%%/lesson-files/sc-hun
%%DATADIR%%/lesson-files/sc-hun-a
%%DATADIR%%/lesson-files/sc-hun-d
%%DATADIR%%/lesson-files/sc-hun-elem
%%DATADIR%%/lesson-files/sc-hun-f
%%DATADIR%%/lesson-files/sc-hun-g
%%DATADIR%%/lesson-files/sc-hun-name
%%DATADIR%%/lesson-files/sc-hun-p
%%DATADIR%%/lesson-files/sc-hun-s
%%DATADIR%%/lesson-files/sc-hun-t
%%DATADIR%%/lesson-files/sc-maj
%%DATADIR%%/lesson-files/sc-maj-a
%%DATADIR%%/lesson-files/sc-maj-d
%%DATADIR%%/lesson-files/sc-maj-elem
%%DATADIR%%/lesson-files/sc-maj-f
%%DATADIR%%/lesson-files/sc-maj-g
%%DATADIR%%/lesson-files/sc-maj-name
%%DATADIR%%/lesson-files/sc-maj-p
%%DATADIR%%/lesson-files/sc-maj-px
%%DATADIR%%/lesson-files/sc-maj-s
%%DATADIR%%/lesson-files/sc-maj-t
%%DATADIR%%/lesson-files/sc-mau
%%DATADIR%%/lesson-files/sc-mau-jazz
%%DATADIR%%/lesson-files/sc-mel
%%DATADIR%%/lesson-files/sc-mel-a
%%DATADIR%%/lesson-files/sc-mel-d
%%DATADIR%%/lesson-files/sc-mel-elem
%%DATADIR%%/lesson-files/sc-mel-f
%%DATADIR%%/lesson-files/sc-mel-g
%%DATADIR%%/lesson-files/sc-mel-name
%%DATADIR%%/lesson-files/sc-mel-p
%%DATADIR%%/lesson-files/sc-mel-s
%%DATADIR%%/lesson-files/sc-mel-t
%%DATADIR%%/lesson-files/sc-min
%%DATADIR%%/lesson-files/sc-min-jazz
%%DATADIR%%/lesson-files/sc-nat-g
%%DATADIR%%/lesson-files/sc-nea
%%DATADIR%%/lesson-files/sc-nea-a
%%DATADIR%%/lesson-files/sc-nea-d
%%DATADIR%%/lesson-files/sc-nea-elem
%%DATADIR%%/lesson-files/sc-nea-f
%%DATADIR%%/lesson-files/sc-nea-g
%%DATADIR%%/lesson-files/sc-nea-name
%%DATADIR%%/lesson-files/sc-nea-p
%%DATADIR%%/lesson-files/sc-nea-s
%%DATADIR%%/lesson-files/sc-nea-t
%%DATADIR%%/lesson-files/sc-nem
%%DATADIR%%/lesson-files/sc-nem-a
%%DATADIR%%/lesson-files/sc-nem-d
%%DATADIR%%/lesson-files/sc-nem-elem
%%DATADIR%%/lesson-files/sc-nem-f
%%DATADIR%%/lesson-files/sc-nem-g
%%DATADIR%%/lesson-files/sc-nem-name
%%DATADIR%%/lesson-files/sc-nem-p
%%DATADIR%%/lesson-files/sc-nem-s
%%DATADIR%%/lesson-files/sc-nem-t
%%DATADIR%%/lesson-files/sc-pen
%%DATADIR%%/lesson-files/sc-pen-a
%%DATADIR%%/lesson-files/sc-pen-d
%%DATADIR%%/lesson-files/sc-pen-elem
%%DATADIR%%/lesson-files/sc-pen-g
%%DATADIR%%/lesson-files/sc-pen-name
%%DATADIR%%/lesson-files/sc-pen-s
%%DATADIR%%/lesson-files/sc-plagal
%%DATADIR%%/lesson-files/sc-sim
%%DATADIR%%/lesson-files/sc-sim-a
%%DATADIR%%/lesson-files/sc-sim-d
%%DATADIR%%/lesson-files/sc-sim-elem
%%DATADIR%%/lesson-files/sc-sim-name
%%DATADIR%%/lesson-files/sc-sim-s
%%DATADIR%%/lesson-files/share/fanfare.midi
%%DATADIR%%/lesson-files/share/fanfare.mp3
%%DATADIR%%/lesson-files/share/fanfare.ogg
%%DATADIR%%/lesson-files/share/fanfare.wav
%%DATADIR%%/lesson-files/share/fifth-pure-220.00.wav
%%DATADIR%%/lesson-files/share/fifth-pure-247.5.wav
%%DATADIR%%/lesson-files/share/fifth-pure-293.33.wav
%%DATADIR%%/lesson-files/share/fifth-small-220.00.wav
%%DATADIR%%/lesson-files/share/fifth-small-247.5.wav
%%DATADIR%%/lesson-files/share/fifth-small-293.33.wav
%%DATADIR%%/lesson-files/share/fil1.sco
%%DATADIR%%/lesson-files/share/sinus-ad.orc
%%DATADIR%%/lesson-files/share/sinus.orc
%%DATADIR%%/lesson-files/sing-chord-tone
%%DATADIR%%/lesson-files/sing-intervals
%%DATADIR%%/lesson-files/sing-intervals-10
%%DATADIR%%/lesson-files/sing-intervals-2
%%DATADIR%%/lesson-files/sing-intervals-2-3
%%DATADIR%%/lesson-files/sing-intervals-3
%%DATADIR%%/lesson-files/sing-intervals-4-5
%%DATADIR%%/lesson-files/sing-intervals-4-5-8
%%DATADIR%%/lesson-files/sing-intervals-6
%%DATADIR%%/lesson-files/sing-intervals-6-7
%%DATADIR%%/lesson-files/sing-intervals-7
%%DATADIR%%/lesson-files/sing-intervals-7-9
%%DATADIR%%/lesson-files/sing-intervals-9
%%DATADIR%%/lesson-files/sing-intervals-self-config
%%DATADIR%%/lesson-files/sing-intervals-tritonus-7
%%DATADIR%%/lesson-files/sing-the-fifth
%%DATADIR%%/lesson-files/sing-the-root
%%DATADIR%%/lesson-files/sing-the-seventh
%%DATADIR%%/lesson-files/sing-the-seventh-inv
%%DATADIR%%/lesson-files/sing-the-third
%%DATADIR%%/lesson-files/singchord-1
%%DATADIR%%/lesson-files/singchord-2
%%DATADIR%%/lesson-files/singchord-3
%%DATADIR%%/lesson-files/singchord-4
%%DATADIR%%/lesson-files/singchord-5
%%DATADIR%%/lesson-files/singchord-6
%%DATADIR%%/lesson-files/singchord-all
%%DATADIR%%/lesson-files/solfa-17
%%DATADIR%%/lesson-files/solfa-17-C
%%DATADIR%%/lesson-files/solfa-7
%%DATADIR%%/lesson-files/solfa-7-C
%%DATADIR%%/lesson-files/solfa-interval-1
%%DATADIR%%/lesson-files/tapping-all
%%DATADIR%%/lesson-files/tapping-easy
%%DATADIR%%/lesson-files/tapping-mid
%%DATADIR%%/lesson-files/three-prog-root
%%DATADIR%%/lesson-files/twelvetone
%%DATADIR%%/lesson-files/volkslieder1
%%DATADIR%%/lesson-files/volkslieder2
%%DATADIR%%/mpd/__init__.py
%%DATADIR%%/mpd/__init__.pyc
%%DATADIR%%/mpd/_exceptions.py
%%DATADIR%%/mpd/_exceptions.pyc
%%DATADIR%%/mpd/const.py
%%DATADIR%%/mpd/const.pyc
%%DATADIR%%/mpd/duration.py
%%DATADIR%%/mpd/duration.pyc
%%DATADIR%%/mpd/engravers.py
%%DATADIR%%/mpd/engravers.pyc
%%DATADIR%%/mpd/interval.py
%%DATADIR%%/mpd/interval.pyc
%%DATADIR%%/mpd/mfutils.py
%%DATADIR%%/mpd/mfutils.pyc
%%DATADIR%%/mpd/mpdutils.py
%%DATADIR%%/mpd/mpdutils.pyc
%%DATADIR%%/mpd/musicalpitch.py
%%DATADIR%%/mpd/musicalpitch.pyc
%%DATADIR%%/mpd/musicdisplayer.py
%%DATADIR%%/mpd/musicdisplayer.pyc
%%DATADIR%%/mpd/parser.py
%%DATADIR%%/mpd/parser.pyc
%%DATADIR%%/mpd/rat.py
%%DATADIR%%/mpd/rat.pyc
%%DATADIR%%/mpd/requests.py
%%DATADIR%%/mpd/requests.pyc
%%DATADIR%%/mpd/track.py
%%DATADIR%%/mpd/track.pyc
%%DATADIR%%/regression-lesson-files/chord-no-name
%%DATADIR%%/regression-lesson-files/chord-wav-music
%%DATADIR%%/regression-lesson-files/chordvoicing-lessonfile-exception
%%DATADIR%%/regression-lesson-files/chordvoicing-mpd-exception
%%DATADIR%%/regression-lesson-files/compareintervals-1
%%DATADIR%%/regression-lesson-files/compareintervals-2
%%DATADIR%%/regression-lesson-files/compareintervals-3
%%DATADIR%%/regression-lesson-files/compareintervals-4
%%DATADIR%%/regression-lesson-files/dictation-exception-handling
%%DATADIR%%/regression-lesson-files/dictation-no-questions
%%DATADIR%%/regression-lesson-files/elembuilder-bad-tonic
%%DATADIR%%/regression-lesson-files/elembuilder-scale-1
%%DATADIR%%/regression-lesson-files/elembuilder-scale-2
%%DATADIR%%/regression-lesson-files/elembuilder-scale-3
%%DATADIR%%/regression-lesson-files/elembuilder-scale-4
%%DATADIR%%/regression-lesson-files/elembuilder-scale-5
%%DATADIR%%/regression-lesson-files/harmonicprogression-lessonfile-exception
%%DATADIR%%/regression-lesson-files/idbyname-assignment-to-reserved-word
%%DATADIR%%/regression-lesson-files/idbyname-at_question_start-1
%%DATADIR%%/regression-lesson-files/idbyname-at_question_start-2
%%DATADIR%%/regression-lesson-files/idbyname-at_question_start-3
%%DATADIR%%/regression-lesson-files/idbyname-bad-cuemusic
%%DATADIR%%/regression-lesson-files/idbyname-mediafiles
%%DATADIR%%/regression-lesson-files/idbyname-missing-.wav-file
%%DATADIR%%/regression-lesson-files/idbyname-noquestionsinfile
%%DATADIR%%/regression-lesson-files/idbyname-progressionlabel
%%DATADIR%%/regression-lesson-files/idbyname-syntax-error-1
%%DATADIR%%/regression-lesson-files/idbyname-syntax-error-2
%%DATADIR%%/regression-lesson-files/idbyname-unsupported-named-block
%%DATADIR%%/regression-lesson-files/idbyname-vmusic
%%DATADIR%%/regression-lesson-files/idproperty-1
%%DATADIR%%/regression-lesson-files/idproperty-2
%%DATADIR%%/regression-lesson-files/idproperty-3
%%DATADIR%%/regression-lesson-files/idproperty-4
%%DATADIR%%/regression-lesson-files/nameinterval-bad-tones-header-var
%%DATADIR%%/regression-lesson-files/nameinterval-constraints
%%DATADIR%%/regression-lesson-files/rhythmtapping-1
%%DATADIR%%/regression-lesson-files/rhythmtapping-2
%%DATADIR%%/regression-lesson-files/rhythmtapping-3
%%DATADIR%%/regression-lesson-files/rhythmtapping-4
%%DATADIR%%/regression-lesson-files/rhythmtapping-bad-mpd-code
%%DATADIR%%/regression-lesson-files/rhythmtapping2-1
%%DATADIR%%/regression-lesson-files/rvoice
%%DATADIR%%/regression-lesson-files/singanswer-bad-mpd-code
%%DATADIR%%/regression-lesson-files/singanswer-missing-.wav-file
%%DATADIR%%/regression-lesson-files/singanswer-missing-question_text
%%DATADIR%%/regression-lesson-files/transpose-accidentals
%%DATADIR%%/regression-lesson-files/transpose-key
%%DATADIR%%/regression-lesson-files/xx-chord-exceptions
%%DATADIR%%/regression-lesson-files/xx-chordvoicing-exceptions
%%DATADIR%%/regression-lesson-files/xx-dictation-exceptions
%%DATADIR%%/regression-lesson-files/xx-elembuilder-exceptions
%%DATADIR%%/regression-lesson-files/xx-harmonicprogressiondictation-exceptions
%%DATADIR%%/regression-lesson-files/xx-idbyname-exceptions
%%DATADIR%%/regression-lesson-files/xx-idproperty-exceptions
%%DATADIR%%/regression-lesson-files/xx-rhythmtapping-exceptions
%%DATADIR%%/regression-lesson-files/xx-singanswer-exceptions
%%DATADIR%%/regression-lesson-files/xx-singchord-exceptions
%%DATADIR%%/solfege.gtkrc
%%DATADIR%%/soundcard/__init__.py
%%DATADIR%%/soundcard/__init__.pyc
%%DATADIR%%/soundcard/exporter.py
%%DATADIR%%/soundcard/exporter.pyc
%%DATADIR%%/soundcard/fakesynth.py
%%DATADIR%%/soundcard/fakesynth.pyc
%%DATADIR%%/soundcard/midifilesynth.py
%%DATADIR%%/soundcard/midifilesynth.pyc
%%DATADIR%%/soundcard/oss_common.py
%%DATADIR%%/soundcard/oss_common.pyc
%%DATADIR%%/soundcard/oss_sequencer.py
%%DATADIR%%/soundcard/oss_sequencer.pyc
%%DATADIR%%/soundcard/oss_sequencer2.py
%%DATADIR%%/soundcard/oss_sequencer2.pyc
%%DATADIR%%/soundcard/solfege_c_midi.py
%%DATADIR%%/soundcard/solfege_c_midi.pyc
%%DATADIR%%/soundcard/soundcardexceptions.py
%%DATADIR%%/soundcard/soundcardexceptions.pyc
%%DATADIR%%/soundcard/synth_common.py
%%DATADIR%%/soundcard/synth_common.pyc
%%DATADIR%%/soundcard/winsynth.py
%%DATADIR%%/soundcard/winsynth.pyc
%%DATADIR%%/src/ElementTree.py
%%DATADIR%%/src/ElementTree.pyc
%%DATADIR%%/src/__init__.py
%%DATADIR%%/src/__init__.pyc
%%DATADIR%%/src/_version.py
%%DATADIR%%/src/_version.pyc
%%DATADIR%%/src/abstract.py
%%DATADIR%%/src/abstract.pyc
%%DATADIR%%/src/app.py
%%DATADIR%%/src/app.pyc
%%DATADIR%%/src/buildinfo.py
%%DATADIR%%/src/buildinfo.pyc
%%DATADIR%%/src/cfg.py
%%DATADIR%%/src/cfg.pyc
%%DATADIR%%/src/chord.py
%%DATADIR%%/src/chord.pyc
%%DATADIR%%/src/chordvoicing.py
%%DATADIR%%/src/chordvoicing.pyc
%%DATADIR%%/src/compareintervals.py
%%DATADIR%%/src/compareintervals.pyc
%%DATADIR%%/src/configwindow.py
%%DATADIR%%/src/configwindow.pyc
%%DATADIR%%/src/const.py
%%DATADIR%%/src/const.pyc
%%DATADIR%%/src/dataparser.py
%%DATADIR%%/src/dataparser.pyc
%%DATADIR%%/src/dictation.py
%%DATADIR%%/src/dictation.pyc
%%DATADIR%%/src/elembuilder.py
%%DATADIR%%/src/elembuilder.pyc
%%DATADIR%%/src/exceptiondialog.py
%%DATADIR%%/src/exceptiondialog.pyc
%%DATADIR%%/src/filesystem.py
%%DATADIR%%/src/filesystem.pyc
%%DATADIR%%/src/gpath.py
%%DATADIR%%/src/gpath.pyc
%%DATADIR%%/src/gu.py
%%DATADIR%%/src/gu.pyc
%%DATADIR%%/src/harmonicinterval.py
%%DATADIR%%/src/harmonicinterval.pyc
%%DATADIR%%/src/harmonicprogressiondictation.py
%%DATADIR%%/src/harmonicprogressiondictation.pyc
%%DATADIR%%/src/helpbrowser.py
%%DATADIR%%/src/helpbrowser.pyc
%%DATADIR%%/src/history.py
%%DATADIR%%/src/history.pyc
%%DATADIR%%/src/htmlwidget.py
%%DATADIR%%/src/htmlwidget.pyc
%%DATADIR%%/src/i18n.py
%%DATADIR%%/src/i18n.pyc
%%DATADIR%%/src/idbyname.py
%%DATADIR%%/src/idbyname.pyc
%%DATADIR%%/src/identifybpm.py
%%DATADIR%%/src/identifybpm.pyc
%%DATADIR%%/src/idproperty.py
%%DATADIR%%/src/idproperty.pyc
%%DATADIR%%/src/idtone.py
%%DATADIR%%/src/idtone.pyc
%%DATADIR%%/src/inputwidgets.py
%%DATADIR%%/src/inputwidgets.pyc
%%DATADIR%%/src/instrumentselector.py
%%DATADIR%%/src/instrumentselector.pyc
%%DATADIR%%/src/languages.py
%%DATADIR%%/src/languages.pyc
%%DATADIR%%/src/learningtree.py
%%DATADIR%%/src/learningtree.pyc
%%DATADIR%%/src/learning_tree_editor.py
%%DATADIR%%/src/learning_tree_editor.pyc
%%DATADIR%%/src/lessonfile.py
%%DATADIR%%/src/lessonfile.pyc
%%DATADIR%%/src/lessonfile_editor_main.py
%%DATADIR%%/src/lessonfile_editor_main.pyc
%%DATADIR%%/src/lessonfilegui.py
%%DATADIR%%/src/lessonfilegui.pyc
%%DATADIR%%/src/mainwin.py
%%DATADIR%%/src/mainwin.pyc
%%DATADIR%%/src/melodicinterval.py
%%DATADIR%%/src/melodicinterval.pyc
%%DATADIR%%/src/multipleintervalconfigwidget.py
%%DATADIR%%/src/multipleintervalconfigwidget.pyc
%%DATADIR%%/src/nameinterval.py
%%DATADIR%%/src/nameinterval.pyc
%%DATADIR%%/src/notenamespinbutton.py
%%DATADIR%%/src/notenamespinbutton.pyc
%%DATADIR%%/src/optionparser.py
%%DATADIR%%/src/optionparser.pyc
%%DATADIR%%/src/osutils.py
%%DATADIR%%/src/osutils.pyc
%%DATADIR%%/src/pmwiki.py
%%DATADIR%%/src/pmwiki.pyc
%%DATADIR%%/src/practisesheetdlg.py
%%DATADIR%%/src/practisesheetdlg.pyc
%%DATADIR%%/src/reportbug.py
%%DATADIR%%/src/reportbug.pyc
%%DATADIR%%/src/reportlib.py
%%DATADIR%%/src/reportlib.pyc
%%DATADIR%%/src/rhythm.py
%%DATADIR%%/src/rhythm.pyc
%%DATADIR%%/src/rhythmtapping.py
%%DATADIR%%/src/rhythmtapping.pyc
%%DATADIR%%/src/rhythmtapping2.py
%%DATADIR%%/src/rhythmtapping2.pyc
%%DATADIR%%/src/runtime.py
%%DATADIR%%/src/runtime.pyc
%%DATADIR%%/src/singanswer.py
%%DATADIR%%/src/singanswer.pyc
%%DATADIR%%/src/singchord.py
%%DATADIR%%/src/singchord.pyc
%%DATADIR%%/src/singinterval.py
%%DATADIR%%/src/singinterval.pyc
%%DATADIR%%/src/specialwidgets.py
%%DATADIR%%/src/specialwidgets.pyc
%%DATADIR%%/src/statistics.py
%%DATADIR%%/src/statistics.pyc
%%DATADIR%%/src/statisticsviewer.py
%%DATADIR%%/src/statisticsviewer.pyc
%%DATADIR%%/src/stock.py
%%DATADIR%%/src/stock.pyc
%%DATADIR%%/src/testlib.py
%%DATADIR%%/src/testlib.pyc
%%DATADIR%%/src/tracebackwindow.py
%%DATADIR%%/src/tracebackwindow.pyc
%%DATADIR%%/src/trainingsetdlg.py
%%DATADIR%%/src/trainingsetdlg.pyc
%%DATADIR%%/src/tree.py
%%DATADIR%%/src/tree.pyc
%%DATADIR%%/src/tuner.py
%%DATADIR%%/src/tuner.pyc
%%DATADIR%%/src/twelvetone.py
%%DATADIR%%/src/twelvetone.pyc
%%DATADIR%%/src/utils.py
%%DATADIR%%/src/utils.pyc
%%DATADIR%%/src/uuid.py
%%DATADIR%%/src/uuid.pyc
%%DATADIR%%/src/winlang.py
%%DATADIR%%/src/winlang.pyc
%%DATADIR%%/src/winreg.py
%%DATADIR%%/src/winreg.pyc
%%DATADIR%%/src/xrandom.py
%%DATADIR%%/src/xrandom.pyc
%%DATADIR%%/themes/svg/chord-voicing.svg
%%DATADIR%%/themes/svg/chord.svg
%%DATADIR%%/themes/svg/happyface.svg
%%DATADIR%%/themes/svg/harmonic-interval.svg
%%DATADIR%%/themes/svg/id-by-name.svg
%%DATADIR%%/themes/svg/mal.svg
%%DATADIR%%/themes/svg/melodic-interval.svg
%%DATADIR%%/themes/svg/sadface.svg
%%DATADIR%%/themes/svg/sing-chord.svg
%%DATADIR%%/themes/svg/sing-interval.svg
%%DATADIR%%/themes/svg/solfege.svg
%%DATADIR%%/ui.xml
@dirrm %%DATADIR%%/themes/svg
@dirrm %%DATADIR%%/themes
@dirrm %%DATADIR%%/src
@dirrm %%DATADIR%%/soundcard
@dirrm %%DATADIR%%/regression-lesson-files
@dirrm %%DATADIR%%/mpd
@dirrm %%DATADIR%%/lesson-files/share
@dirrm %%DATADIR%%/lesson-files/include
@dirrm %%DATADIR%%/lesson-files/bin
@dirrm %%DATADIR%%/lesson-files
@dirrm %%DATADIR%%/learningtrees
@dirrm %%DATADIR%%/help/tr/figures
@dirrm %%DATADIR%%/help/tr
@dirrm %%DATADIR%%/help/ru
@dirrm %%DATADIR%%/help/pt_BR/figures
@dirrm %%DATADIR%%/help/pt_BR
@dirrm %%DATADIR%%/help/nb/figures
@dirrm %%DATADIR%%/help/nb
@dirrm %%DATADIR%%/help/nl
@dirrm %%DATADIR%%/help/gl
@dirrm %%DATADIR%%/help/fr/figures
@dirrm %%DATADIR%%/help/fr
@dirrm %%DATADIR%%/help/C/scales/images/triads
@dirrm %%DATADIR%%/help/C/scales/images/quadriads
@dirrm %%DATADIR%%/help/C/scales/images/modes/scales
@dirrm %%DATADIR%%/help/C/scales/images/modes/chords
@dirrm %%DATADIR%%/help/C/scales/images/modes
@dirrm %%DATADIR%%/help/C/scales/images
@dirrm %%DATADIR%%/help/C/scales
@dirrm %%DATADIR%%/help/C/ly
@dirrm %%DATADIR%%/help/C/figures
@dirrm %%DATADIR%%/help/C
@dirrm %%DATADIR%%/help
@dirrm %%DATADIR%%/graphics
@dirrm %%DATADIR%%/feta
@dirrm %%DATADIR%%/example-lesson-files
@dirrm %%DATADIR%%
@dirrmtry share/applications
|