File: copyright

package info (click to toggle)
audacity 2.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 129,312 kB
  • sloc: ansic: 373,350; cpp: 276,880; sh: 56,060; python: 18,922; makefile: 10,309; lisp: 8,365; xml: 1,888; perl: 1,798; java: 1,551; asm: 545; pascal: 395; sed: 58; awk: 35
file content (3109 lines) | stat: -rw-r--r-- 141,166 bytes parent folder | download
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
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: audacity
Upstream-Contact: audacity-devel@lists.sourceforge.net
Source: https://github.com/audacity/audacity

Files: *
Copyright: 2000-2001, Apple Computer, Inc
           1999-2018, Audacity Team
           1989-1994, Carnegie Mellon University
           1985-1986, David Betz
           1985-1987, David Michael Betz
           2003, David W. Durham
           2003-2005, Dominic Mazzoni and Matt Brubeck
           1999-2017, Ekipa Audacity
           2001, Erik de Castro Lopo <erikd@mega-nerd.com>
           1989-2013, Free Software Foundation, Inc
           1989-1991, Free Software Foundation, Inc.
           2010, HairerSoft
           2005, Heinrich Taube <taube@uiuc.edu>
           2006, Innovative Computer Solutions")
           1998-2003, Julian Smart
           2008, LRN
           2009, Martin Srebotnjak
           2000-2002, Michael Smith
           1986-2009, Microsoft Corporation
           1999-2012, Olli Parviainen
           Olli Parviainen
           2006, Rick Taube
           1998, Robert Roebling
           1998, Robert Roebling, 2004 Zbigniew Zagorski, 2005 Mart Raudsepp
           1991-2012, Roger B. Dannenberg
           Ryan Norton
           2004, Sami Liedes
           2002-2005, Shane T. Mueller
           2007, Sharif Farsiweb, Inc
           Stefan Csomor
           2005, The Audacity Team
           1995-2010, Ulrich Drepper <drepper@gnu.ai.mit.edu>
           2011, Vadim Zeitlin <vadim@wxwidgets.org>
           2007-2009, Vaughan Johnson, Martyn Shaw (MJS)
           1999, and beyond Audacity Development Team
           2007-2013, robs@users.sourceforge.net
           2010, wxWidgets team
License: CC-BY or GPL-2+
Comment: No explicit license found, using license(s) from:
 LICENSE.txt

Files: lib-src/ffmpeg/libavcodec/*
       lib-src/ffmpeg/libavformat/*
       lib-src/ffmpeg/libavutil/adler32.h
       lib-src/ffmpeg/libavutil/aes.h
       lib-src/ffmpeg/libavutil/attributes.h
       lib-src/ffmpeg/libavutil/audio_fifo.h
       lib-src/ffmpeg/libavutil/avassert.h
       lib-src/ffmpeg/libavutil/avstring.h
       lib-src/ffmpeg/libavutil/avutil.h
       lib-src/ffmpeg/libavutil/base64.h
       lib-src/ffmpeg/libavutil/blowfish.h
       lib-src/ffmpeg/libavutil/bprint.h
       lib-src/ffmpeg/libavutil/bswap.h
       lib-src/ffmpeg/libavutil/buffer.h
       lib-src/ffmpeg/libavutil/channel_layout.h
       lib-src/ffmpeg/libavutil/common.h
       lib-src/ffmpeg/libavutil/cpu.h
       lib-src/ffmpeg/libavutil/crc.h
       lib-src/ffmpeg/libavutil/dict.h
       lib-src/ffmpeg/libavutil/downmix_info.h
       lib-src/ffmpeg/libavutil/error.h
       lib-src/ffmpeg/libavutil/eval.h
       lib-src/ffmpeg/libavutil/fifo.h
       lib-src/ffmpeg/libavutil/file.h
       lib-src/ffmpeg/libavutil/frame.h
       lib-src/ffmpeg/libavutil/hmac.h
       lib-src/ffmpeg/libavutil/imgutils.h
       lib-src/ffmpeg/libavutil/intfloat.h
       lib-src/ffmpeg/libavutil/intfloat_readwrite.h
       lib-src/ffmpeg/libavutil/intreadwrite.h
       lib-src/ffmpeg/libavutil/lfg.h
       lib-src/ffmpeg/libavutil/log.h
       lib-src/ffmpeg/libavutil/lzo.h
       lib-src/ffmpeg/libavutil/macros.h
       lib-src/ffmpeg/libavutil/mathematics.h
       lib-src/ffmpeg/libavutil/md5.h
       lib-src/ffmpeg/libavutil/mem.h
       lib-src/ffmpeg/libavutil/murmur3.h
       lib-src/ffmpeg/libavutil/old_pix_fmts.h
       lib-src/ffmpeg/libavutil/opencl.h
       lib-src/ffmpeg/libavutil/opt.h
       lib-src/ffmpeg/libavutil/parseutils.h
       lib-src/ffmpeg/libavutil/pixdesc.h
       lib-src/ffmpeg/libavutil/pixfmt.h
       lib-src/ffmpeg/libavutil/random_seed.h
       lib-src/ffmpeg/libavutil/rational.h
       lib-src/ffmpeg/libavutil/ripemd.h
       lib-src/ffmpeg/libavutil/samplefmt.h
       lib-src/ffmpeg/libavutil/sha.h
       lib-src/ffmpeg/libavutil/sha512.h
       lib-src/ffmpeg/libavutil/stereo3d.h
       lib-src/ffmpeg/libavutil/time.h
       lib-src/ffmpeg/libavutil/timecode.h
       lib-src/ffmpeg/libavutil/timestamp.h
       lib-src/ffmpeg/libavutil/version.h
       lib-src/ffmpeg/libavutil/xtea.h
       lib-src/soundtouch/include/BPMDetect.h
       lib-src/soundtouch/include/FIFOSampleBuffer.h
       lib-src/soundtouch/include/FIFOSamplePipe.h
       lib-src/soundtouch/include/STTypes.h
       lib-src/soundtouch/include/SoundTouch.h
       lib-src/soundtouch/source/SoundStretch/RunParameters.cpp
       lib-src/soundtouch/source/SoundStretch/RunParameters.h
       lib-src/soundtouch/source/SoundStretch/WavFile.cpp
       lib-src/soundtouch/source/SoundStretch/WavFile.h
       lib-src/soundtouch/source/SoundStretch/main.cpp
       lib-src/soundtouch/source/SoundTouch/AAFilter.cpp
       lib-src/soundtouch/source/SoundTouch/AAFilter.h
       lib-src/soundtouch/source/SoundTouch/BPMDetect.cpp
       lib-src/soundtouch/source/SoundTouch/FIFOSampleBuffer.cpp
       lib-src/soundtouch/source/SoundTouch/FIRFilter.cpp
       lib-src/soundtouch/source/SoundTouch/FIRFilter.h
       lib-src/soundtouch/source/SoundTouch/PeakFinder.cpp
       lib-src/soundtouch/source/SoundTouch/PeakFinder.h
       lib-src/soundtouch/source/SoundTouch/RateTransposer.cpp
       lib-src/soundtouch/source/SoundTouch/RateTransposer.h
       lib-src/soundtouch/source/SoundTouch/SoundTouch.cpp
       lib-src/soundtouch/source/SoundTouch/TDStretch.cpp
       lib-src/soundtouch/source/SoundTouch/TDStretch.h
       lib-src/soundtouch/source/SoundTouch/cpu_detect.h
       lib-src/soundtouch/source/SoundTouch/cpu_detect_x86.cpp
       lib-src/soundtouch/source/SoundTouch/mmx_optimized.cpp
       lib-src/soundtouch/source/SoundTouch/sse_optimized.cpp
       lib-src/soundtouch/source/SoundTouchDLL/SoundTouchDLL.cpp
       lib-src/soundtouch/source/SoundTouchDLL/SoundTouchDLL.h
       lib-src/soundtouch/source/SoundTouchDLL/SoundTouchDLL.pas
       mac/config/i386/lib-src/libsndfile/src/sndfile.h
       src/effects/ladspa/ladspa.h
       win/LADSPA_plugins-win/glibc_includes/bits/*
       win/LADSPA_plugins-win/glibc_includes/features.h
       win/LADSPA_plugins-win/glibc_includes/stdint.h
       win/LADSPA_plugins-win/glibc_includes/sys/*
       win/LADSPA_plugins-win/ladspa.h
       win/Projects/libsndfile/sndfile.h
Copyright: 2006-2009, Baptiste Coudurier <baptiste.coudurier@gmail.com>
           1999-2011, Erik de Castro Lopo <erikd@mega-nerd.com>
           2000-2003, Fabrice Bellard
           1997-2001, Free Software Foundation, Inc
           2003, Ivan Kalvachev
           2013, James Almer <jamrial@gmail.com>
           2012, Justin Ruggles <justin.ruggles@gmail.com>
           2009, Laurent Aimar
           2013, Lenny Wang <lwanghpc@gmail.com>
           2012, Li Cao <li@multicorewareinc.com>
           2006-2011, Mans Rullgard
           2012, Martin Storsjo
           2008, Michael Niedermayer
           2002-2012, Michael Niedermayer <michaelni@gmx.at>
           2008, NVIDIA
           2012, Nicolas George
           Olli Parviainen
           2012, Peng Gao <peng@multicorewareinc.com>
           2008, Peter Ross
           2006, Reimar Doeffinger
           2013, Reimar Döffinger <Reimar.Doeffinger@gmx.de>
           2000-2002, Richard W.E. Furse, Paul Barton-Davis
           2006, Ryan Martell <rdm4@martellventures.com>
           2012, Samuel Pitoiset
           2011, Sebastien Zwickert
           2011-2012, Smartjog S.A.S, Clément Bœsch <clement.boesch@smartjog.com>
           2008-2009, Splitted-Desktop Systems
           2014, Tim Walker <tdskywalker@gmail.com>
           2013, Vittorio Giovara <vittorio.giovara@gmail.com>
           2012, Wei Gao <weigao@multicorewareinc.com>
License: LGPL-2.1+

Files: Makefile.in
       autotools/*
       help/Makefile.in
       images/Makefile.in
       lib-src/FileDialog/Makefile.in
       lib-src/FileDialog/m4/*
       lib-src/Makefile.in
       lib-src/lib-widget-extra/Makefile.in
       lib-src/lib-widget-extra/m4/*
       lib-src/libnyquist/Makefile.in
       lib-src/libnyquist/configure
       lib-src/libscorealign/Makefile.in
       lib-src/libscorealign/configure
       lib-src/mod-nyq-bench/Makefile.in
       lib-src/mod-nyq-bench/m4/*
       lib-src/portmidi/Makefile.in
       lib-src/portmidi/configure
       lib-src/portsmf/Makefile.in
       lib-src/portsmf/configure
       lib-src/sbsms/Makefile.in
       lib-src/sbsms/m4/ltoptions.m4
       lib-src/sbsms/m4/ltsugar.m4
       lib-src/sbsms/m4/ltversion.m4
       lib-src/sbsms/m4/lt~obsolete.m4
       lib-src/sbsms/src/Makefile.in
       lib-src/soundtouch/Makefile.in
       lib-src/soundtouch/config/m4/*
       lib-src/soundtouch/include/Makefile.in
       lib-src/soundtouch/source/Makefile.in
       lib-src/soundtouch/source/SoundStretch/Makefile.in
       lib-src/soundtouch/source/SoundTouch/Makefile.in
       m4/codeset.m4
       m4/fcntl-o.m4
       m4/gettext.m4
       m4/glibc2.m4
       m4/glibc21.m4
       m4/iconv.m4
       m4/intdiv0.m4
       m4/intl.m4
       m4/intldir.m4
       m4/intlmacosx.m4
       m4/intmax.m4
       m4/inttypes-pri.m4
       m4/inttypes_h.m4
       m4/lcmessage.m4
       m4/lib-ld.m4
       m4/lib-link.m4
       m4/lib-prefix.m4
       m4/lock.m4
       m4/longlong.m4
       m4/ltoptions.m4
       m4/ltsugar.m4
       m4/ltversion.m4
       m4/lt~obsolete.m4
       m4/nls.m4
       m4/po.m4
       m4/printf-posix.m4
       m4/progtest.m4
       m4/size_max.m4
       m4/stdint_h.m4
       m4/threadlib.m4
       m4/uintmax_t.m4
       m4/visibility.m4
       m4/wchar_t.m4
       m4/wint_t.m4
       m4/xsize.m4
       src/Makefile.in
       tests/Makefile.in
Copyright: 1992-2014, Free Software Foundation, Inc
License: FSF_unlimited

Files: src/AllThemeResources.h
       src/Audacity.h
       src/AutoRecovery.cpp
       src/AutoRecovery.h
       src/Dependencies.cpp
       src/Dependencies.h
       src/DeviceManager.h
       src/DirManager.cpp
       src/FFmpeg.cpp
       src/FFmpeg.h
       src/PitchName.cpp
       src/PitchName.h
       src/Profiler.cpp
       src/Profiler.h
       src/Resample.cpp
       src/Resample.h
       src/RevisionIdent.h
       src/blockfile/ODDecodeBlockFile.cpp
       src/blockfile/ODDecodeBlockFile.h
       src/blockfile/ODPCMAliasBlockFile.cpp
       src/blockfile/ODPCMAliasBlockFile.h
       src/blockfile/SilentBlockFile.h
       src/commands/CommandMisc.h
       src/commands/CommandTargets.h
       src/commands/ScreenshotCommand.cpp
       src/commands/ScreenshotCommand.h
       src/commands/SelectCommand.h
       src/effects/BassTreble.cpp
       src/effects/BassTreble.h
       src/effects/ChangePitch.cpp
       src/effects/ChangePitch.h
       src/effects/EffectManager.cpp
       src/effects/EffectManager.h
       src/effects/EffectRack.cpp
       src/effects/EffectRack.h
       src/effects/Reverb.cpp
       src/effects/Reverb.h
       src/effects/ScoreAlignDialog.cpp
       src/effects/TimeWarper.cpp
       src/effects/TimeWarper.h
       src/effects/lv2/LV2Effect.cpp
       src/effects/lv2/LV2Effect.h
       src/effects/lv2/LoadLV2.cpp
       src/effects/lv2/LoadLV2.h
       src/export/ExportFFmpeg.cpp
       src/export/ExportFFmpegDialogs.cpp
       src/ondemand/ODComputeSummaryTask.cpp
       src/ondemand/ODComputeSummaryTask.h
       src/ondemand/ODDecodeFFmpegTask.cpp
       src/ondemand/ODDecodeFFmpegTask.h
       src/ondemand/ODDecodeFlacTask.h
       src/ondemand/ODDecodeTask.cpp
       src/ondemand/ODDecodeTask.h
       src/ondemand/ODManager.h
       src/ondemand/ODTask.cpp
       src/ondemand/ODTask.h
       src/ondemand/ODTaskThread.cpp
       src/ondemand/ODTaskThread.h
       src/ondemand/ODWaveTrackTaskQueue.cpp
       src/ondemand/ODWaveTrackTaskQueue.h
       src/widgets/MultiDialog.cpp
       src/widgets/MultiDialog.h
       win/audacity.iss
       win/configwin.h
Copyright: 1999-2009, Audacity Team
License: GPL-2

Files: autotools/ar-lib
       autotools/compile
       autotools/depcomp
       autotools/missing
       autotools/test-driver
       lib-src/FileDialog/autotools/*
       lib-src/lib-widget-extra/autotools/*
       lib-src/lib-widget-extra/m4/ax_cflags_strict_prototypes.m4
       lib-src/lib-widget-extra/m4/ax_cflags_warn_all.m4
       lib-src/lib-widget-extra/m4/ax_cxx_check_flag.m4
       lib-src/lib-widget-extra/m4/ax_cxxcpp_check_flag.m4
       lib-src/libnyquist/autotools/*
       lib-src/libscorealign/autotools/*
       lib-src/mod-nyq-bench/autotools/*
       lib-src/portmidi/autotools/*
       lib-src/portsmf/autotools/*
       lib-src/sbsms/ar-lib
       lib-src/sbsms/compile
       lib-src/sbsms/depcomp
       lib-src/sbsms/missing
       lib-src/soundtouch/config/compile
       lib-src/soundtouch/config/depcomp
       lib-src/soundtouch/config/missing
       m4/ax_cflags_strict_prototypes.m4
       m4/ax_cflags_warn_all.m4
       m4/ax_cxx_check_flag.m4
       m4/ax_cxxcpp_check_flag.m4
       m4/ax_ld_check_flag.m4
       m4/pkg.m4
Copyright: 2007-2008, Francesco Salvestrini <salvestrini@users.sourceforge.net>
           1996-2013, Free Software Foundation, Inc
           2006, Guido U. Draheim <guidod@gmx.de>
           2004, Scott James Remnant <scott@netsplit.com>
License: GPL-2+ with AutoConf exception

Files: lib-src/libnyquist/nyquist/nyqsrc/fftw.h
       lib-src/libnyquist/nyquist/nyqsrc/rfftw.h
       lib-src/sbsms/src/real.h
       lib-src/soundtouch/Makefile.am
       lib-src/soundtouch/config/am_include.mk
       lib-src/soundtouch/configure.ac
       lib-src/soundtouch/include/Makefile.am
       lib-src/soundtouch/source/Makefile.am
       lib-src/soundtouch/source/SoundStretch/Makefile.am
       lib-src/soundtouch/source/SoundTouch/Makefile.am
       mac/config/i386/lib-src/libmad/*
       src/AudioIO.cpp
       src/RealFFTf.cpp
       src/RealFFTf48x.cpp
       src/SoundActivatedRecord.cpp
       src/SoundActivatedRecord.h
       src/TimerRecordDialog.cpp
       src/TimerRecordDialog.h
       src/effects/VST/aeffectx.h
       src/export/ExportMP2.cpp
       src/export/ExportMP3.cpp
       src/toolbars/SelectionBar.cpp
       src/toolbars/SpectralSelectionBar.cpp
       src/widgets/ProgressDialog.cpp
       src/widgets/ProgressDialog.h
Copyright: 2003, David W. Durham
           2005-2014, Dominic Mazzoni
           2001-2003, Erik de Castro Lopo <erikd@mega-nerd.com>
           2006, Javier Serrano Polo <jasp00/at/users.sourceforge.net>
           2002-2003, Joshua Haberman
           2006, Markus Meyer
           1997-1999, Massachusetts Institute of Technology
           2003, Paolo Patruno
           2009, Philip VanBaren
           2000-2001, Robert Leslie
           2000-2004, Underbit Technologies, Inc
           2006-2009, Vaughan Johnson
License: GPL-2+

Files: autotools/install-sh
       lib-src/FileDialog/autotools/install-sh
       lib-src/lib-widget-extra/autotools/install-sh
       lib-src/libnyquist/autotools/install-sh
       lib-src/libscorealign/autotools/install-sh
       lib-src/libscorealign/license.txt
       lib-src/mod-nyq-bench/autotools/install-sh
       lib-src/portmidi/autotools/install-sh
       lib-src/portmidi/license.txt
       lib-src/portmidi/pm_common/portmidi.h
       lib-src/portmidi/pm_java/pmdefaults/pmdefaults-license.txt
       lib-src/portmidi/pm_mac/readbinaryplist.c
       lib-src/portsmf/autotools/install-sh
       lib-src/portsmf/license.txt
       lib-src/sbsms/install-sh
       lib-src/soundtouch/config/install-sh
Copyright: 2007, Jens Ayton
           2001-2010, Roger B. Dannenberg
           1999-2000, Ross Bencina and Phil Burk
           1994, X Consortium
License: Expat

Files: autotools/config.guess
       autotools/config.sub
       lib-src/FileDialog/autotools/config.guess
       lib-src/FileDialog/autotools/config.sub
       lib-src/lib-widget-extra/autotools/config.guess
       lib-src/lib-widget-extra/autotools/config.sub
       lib-src/libscorealign/autotools/m4/ax_cflags_strict_prototypes.m4
       lib-src/libscorealign/autotools/m4/ax_cflags_warn_all.m4
       lib-src/libscorealign/autotools/m4/m4_ax_append_flag.m4
       lib-src/mod-nyq-bench/autotools/config.guess
       lib-src/mod-nyq-bench/autotools/config.sub
       lib-src/sbsms/config.guess
       lib-src/sbsms/config.sub
       lib-src/soundtouch/config/config.guess
       lib-src/soundtouch/config/config.sub
Copyright: 1992-2013, Free Software Foundation, Inc
           2008, Guido U. Draheim <guidod@gmx.de>
           2011, Maarten Bosmans <mkbosmans@gmail.com>
           2010, Rhys Ulerich <rhys.ulerich@gmail.com>
License: GPL-3+ with AutoConf exception

Files: configure
       lib-src/FileDialog/configure
       lib-src/FileDialog/m4/libtool.m4
       lib-src/lib-widget-extra/configure
       lib-src/lib-widget-extra/m4/libtool.m4
       lib-src/mod-nyq-bench/configure
       lib-src/mod-nyq-bench/m4/libtool.m4
       lib-src/sbsms/configure
       lib-src/sbsms/m4/libtool.m4
       lib-src/soundtouch/config/m4/libtool.m4
       lib-src/soundtouch/configure
       m4/libtool.m4
Copyright: 1992-2012, Free Software Foundation, Inc
License: FSF_unlimited or GPL-2+ with LibTool exception

Files: include/*
       lib-src/lv2/msinttypes/*
Copyright: 2006-2013, Alexander Chemeris
           2014, Audacity Team
License: BSD-3-clause

Files: autotools/ltmain.sh
       lib-src/FileDialog/autotools/ltmain.sh
       lib-src/lib-widget-extra/autotools/ltmain.sh
       lib-src/mod-nyq-bench/autotools/ltmain.sh
       lib-src/sbsms/ltmain.sh
       lib-src/soundtouch/config/ltmain.sh
Copyright: no copyright
License: GPL-2+ with LibTool exception

Files: lib-src/sbsms/m4/ax_check_compiler_flags.m4
       lib-src/sbsms/m4/ax_compiler_vendor.m4
       m4/ax_check_compiler_flags.m4
       m4/ax_compiler_vendor.m4
       m4/ax_gcc_version_atleast.m4
Copyright: no copyright
License: GPL with AutoConf exception

Files: locale/fr.po
       scripts/mw2html_audacity/303.css
       win/audacity_InnoWizard_InfoBefore.rtf
       win/compile.txt
Copyright: 1999-2017, Audacity Team
           Gabriel Wicke - http://wikidev.net
License: GPL

Files: lib-src/ffmpeg/win32/*
       win/LADSPA_plugins-win/fftw3.h
Copyright: 2006, Alexander Chemeris
           2003-2006, Massachusetts Institute of Technology
           2003-2006, Matteo Frigo
License: BSD-2-clause

Files: LICENSE.txt
Copyright: 1989-1991, Free Software Foundation, Inc
License: CC-BY or GPL-2+

Files: README.txt
Copyright: 1999-2017, Audacity Team
           1984-2002, David Michael Betz
           2000-2002, Roger B. Dannenberg
License: BSD-3-clause or CC-BY-3.0 or GPL-2+

Files: debian/*
License: CC-BY or GPL-2+
Copyright:
 2011-2004 Joshua Haberman <joshua@debian.org>
 2004-2006 Matt Brubeck <mbrubeck@cs.hmc.edu> 
 2007-2009 Free Ekanayaka <freee@debian.org>,
 2009-2013 Benjamin Drung <bdrung@debian.org>,
 David Henningsson <diwic@ubuntu.com>
Comment: No explicit license found, using license(s) from:
 LICENSE.txt

Files: lib-src/mod-nyq-bench/m4/ax_cxx_compile_stdcxx.m4
       lib-src/sbsms/INSTALL
Copyright: 2008, Benjamin Kosnik <bkoz@redhat.com>
           1994-2013, Free Software Foundation
           2014-2015, Google Inc.; contributed by Alexey Sokolov <sokolov@google.com>
           2015, Moritz Klammler <moritz@klammler.eu>
           2015, Paul Norman <penorman@mac.com>
           2013, Roy Stogner <roystgnr@ices.utexas.edu>
           2012, Zack Weinberg <zackw@panix.com>
License: Permissive

Files: lib-src/expat/*
Copyright: 1999-2000, Clark Cooper <coopercc@netheaven.com>
           2002, Daryle Walker
           2010, Patrick Spendrin <ps_ml@gmx.de>
           1998-2012, Thai Open Source Software Center Ltd
           2002, Thomas Wegner
License: Expat
Comment: No explicit license found, using license(s) from:
 lib-src/expat/COPYING

Files: lib-src/expat/COPYING
       lib-src/expat/amiga/expat_68k.c
       lib-src/expat/amiga/expat_68k.h
       lib-src/expat/amiga/expat_68k_handler_stubs.c
       lib-src/expat/amiga/expat_base.h
       lib-src/expat/amiga/expat_lib.c
       lib-src/expat/amiga/expat_vectors.c
       lib-src/expat/amiga/include/libraries/*
       lib-src/expat/amiga/launch.c
       lib-src/expat/conftools/install-sh
Copyright: 2001-2009, Expat maintainers
           1998-2000, Thai Open Source Software Center Ltd
           1994, X Consortium
License: Expat

Files: lib-src/expat/configure
       lib-src/expat/m4/*
Copyright: 1992-2012, Free Software Foundation, Inc
License: FSF_unlimited or GPL-2+ with LibTool exception

Files: lib-src/expat/conftools/config.guess
       lib-src/expat/conftools/config.sub
Copyright: no copyright
License: GPL-2+ with AutoConf exception

Files: lib-src/expat/conftools/ltmain.sh
Copyright: no copyright
License: GPL-2+ with LibTool exception

Files: lib-src/expat/doc/xmlwf.1
Copyright: no copyright
License: GFDL-1.1

Files: lib-src/expat/m4/ltoptions.m4
       lib-src/expat/m4/ltsugar.m4
       lib-src/expat/m4/ltversion.m4
       lib-src/expat/m4/lt~obsolete.m4
Copyright: 2004-2009, Free Software Foundation, Inc
License: FSF_unlimited

Files: lib-src/lame/*
Copyright: 2000, Don Melton
           1999, Mark Taylor
License: GPL-2+ or LGPL-2+

Files: lib-src/libflac/*
Copyright: 2001-2009, Josh Coalson
           2011-2014, Xiph.Org Foundation
License: BSD-3-clause or GFDL-NIV-1.2 or GPL-2+ or LGPL-2.1+
Comment: No explicit license found, using license(s) from:
 lib-src/libflac/COPYING.FDL
 lib-src/libflac/COPYING.GPL
 lib-src/libflac/COPYING.LGPL
 lib-src/libflac/COPYING.Xiph

Files: lib-src/libflac/COPYING.GPL
       lib-src/libflac/doc/Makefile.am
       lib-src/libflac/doc/Makefile.lite
       lib-src/libflac/examples/c/decode/file/Makefile.am
       lib-src/libflac/examples/c/decode/file/Makefile.lite
       lib-src/libflac/examples/c/decode/file/main.c
       lib-src/libflac/examples/c/encode/file/Makefile.am
       lib-src/libflac/examples/c/encode/file/Makefile.lite
       lib-src/libflac/examples/c/encode/file/main.c
       lib-src/libflac/examples/cpp/decode/file/Makefile.am
       lib-src/libflac/examples/cpp/decode/file/Makefile.lite
       lib-src/libflac/examples/cpp/decode/file/main.cpp
       lib-src/libflac/examples/cpp/encode/file/Makefile.am
       lib-src/libflac/examples/cpp/encode/file/Makefile.lite
       lib-src/libflac/examples/cpp/encode/file/main.cpp
       lib-src/libflac/include/share/grabbag/picture.h
       lib-src/libflac/include/test_libs_common/file_utils_flac.h
       lib-src/libflac/include/test_libs_common/metadata_utils.h
       lib-src/libflac/man/Makefile.am
       lib-src/libflac/src/flac/Makefile.am
       lib-src/libflac/src/flac/Makefile.lite
       lib-src/libflac/src/flac/Makefile.lite.iffscan
       lib-src/libflac/src/flac/analyze.c
       lib-src/libflac/src/flac/analyze.h
       lib-src/libflac/src/flac/decode.c
       lib-src/libflac/src/flac/decode.h
       lib-src/libflac/src/flac/encode.c
       lib-src/libflac/src/flac/encode.h
       lib-src/libflac/src/flac/foreign_metadata.c
       lib-src/libflac/src/flac/foreign_metadata.h
       lib-src/libflac/src/flac/iffscan.c
       lib-src/libflac/src/flac/local_string_utils.h
       lib-src/libflac/src/flac/main.c
       lib-src/libflac/src/flac/utils.c
       lib-src/libflac/src/flac/utils.h
       lib-src/libflac/src/flac/vorbiscomment.c
       lib-src/libflac/src/flac/vorbiscomment.h
       lib-src/libflac/src/metaflac/Makefile.am
       lib-src/libflac/src/metaflac/Makefile.lite
       lib-src/libflac/src/metaflac/main.c
       lib-src/libflac/src/metaflac/operations.c
       lib-src/libflac/src/metaflac/operations.h
       lib-src/libflac/src/metaflac/operations_shorthand.h
       lib-src/libflac/src/metaflac/operations_shorthand_cuesheet.c
       lib-src/libflac/src/metaflac/operations_shorthand_picture.c
       lib-src/libflac/src/metaflac/operations_shorthand_seektable.c
       lib-src/libflac/src/metaflac/operations_shorthand_streaminfo.c
       lib-src/libflac/src/metaflac/operations_shorthand_vorbiscomment.c
       lib-src/libflac/src/metaflac/options.c
       lib-src/libflac/src/metaflac/options.h
       lib-src/libflac/src/metaflac/usage.c
       lib-src/libflac/src/metaflac/usage.h
       lib-src/libflac/src/metaflac/utils.c
       lib-src/libflac/src/metaflac/utils.h
       lib-src/libflac/src/plugin_common/charset.c
       lib-src/libflac/src/plugin_common/charset.h
       lib-src/libflac/src/plugin_common/dither.c
       lib-src/libflac/src/plugin_common/replaygain.c
       lib-src/libflac/src/plugin_common/replaygain.h
       lib-src/libflac/src/plugin_xmms/*
       lib-src/libflac/src/share/grabbag/picture.c
       lib-src/libflac/src/share/utf8/charset.c
       lib-src/libflac/src/share/utf8/charset.h
       lib-src/libflac/src/share/utf8/charset_test.c
       lib-src/libflac/src/share/utf8/iconvert.c
       lib-src/libflac/src/share/utf8/iconvert.h
       lib-src/libflac/src/share/utf8/makemap.c
       lib-src/libflac/src/share/utf8/utf8.c
       lib-src/libflac/src/test_grabbag/Makefile.lite
       lib-src/libflac/src/test_grabbag/cuesheet/Makefile.am
       lib-src/libflac/src/test_grabbag/cuesheet/Makefile.lite
       lib-src/libflac/src/test_grabbag/cuesheet/main.c
       lib-src/libflac/src/test_grabbag/picture/Makefile.am
       lib-src/libflac/src/test_grabbag/picture/Makefile.lite
       lib-src/libflac/src/test_grabbag/picture/main.c
       lib-src/libflac/src/test_libFLAC++/Makefile.am
       lib-src/libflac/src/test_libFLAC++/Makefile.lite
       lib-src/libflac/src/test_libFLAC++/decoders.cpp
       lib-src/libflac/src/test_libFLAC++/decoders.h
       lib-src/libflac/src/test_libFLAC++/encoders.cpp
       lib-src/libflac/src/test_libFLAC++/encoders.h
       lib-src/libflac/src/test_libFLAC++/main.cpp
       lib-src/libflac/src/test_libFLAC++/metadata.cpp
       lib-src/libflac/src/test_libFLAC++/metadata.h
       lib-src/libflac/src/test_libFLAC++/metadata_manip.cpp
       lib-src/libflac/src/test_libFLAC++/metadata_object.cpp
       lib-src/libflac/src/test_libFLAC/Makefile.am
       lib-src/libflac/src/test_libFLAC/Makefile.lite
       lib-src/libflac/src/test_libFLAC/bitwriter.c
       lib-src/libflac/src/test_libFLAC/bitwriter.h
       lib-src/libflac/src/test_libFLAC/decoders.c
       lib-src/libflac/src/test_libFLAC/decoders.h
       lib-src/libflac/src/test_libFLAC/encoders.c
       lib-src/libflac/src/test_libFLAC/encoders.h
       lib-src/libflac/src/test_libFLAC/endswap.c
       lib-src/libflac/src/test_libFLAC/endswap.h
       lib-src/libflac/src/test_libFLAC/format.c
       lib-src/libflac/src/test_libFLAC/format.h
       lib-src/libflac/src/test_libFLAC/main.c
       lib-src/libflac/src/test_libFLAC/md5.c
       lib-src/libflac/src/test_libFLAC/md5.h
       lib-src/libflac/src/test_libFLAC/metadata.c
       lib-src/libflac/src/test_libFLAC/metadata.h
       lib-src/libflac/src/test_libFLAC/metadata_manip.c
       lib-src/libflac/src/test_libFLAC/metadata_object.c
       lib-src/libflac/src/test_libs_common/Makefile.am
       lib-src/libflac/src/test_libs_common/Makefile.lite
       lib-src/libflac/src/test_libs_common/file_utils_flac.c
       lib-src/libflac/src/test_libs_common/metadata_utils.c
       lib-src/libflac/src/test_seeking/Makefile.am
       lib-src/libflac/src/test_seeking/Makefile.lite
       lib-src/libflac/src/test_seeking/main.c
       lib-src/libflac/src/test_streams/Makefile.am
       lib-src/libflac/src/test_streams/Makefile.lite
       lib-src/libflac/src/test_streams/main.c
       lib-src/libflac/src/utils/flacdiff/Makefile.am
       lib-src/libflac/src/utils/flacdiff/Makefile.lite
       lib-src/libflac/src/utils/flacdiff/main.cpp
       lib-src/libflac/src/utils/flactimer/Makefile.am
       lib-src/libflac/src/utils/flactimer/main.cpp
Copyright: 2002-2009, Daisuke Shimamura
           2001, Edmund Grimley Evans <edmundo@rano.org>
           1989-1991, Free Software Foundation, Inc
           1999-2000, Håvard Kvålen
           1999-2001, H蛆ard Kv虱en <havardk@xmms.org>
           2000-2002, Jerome Couderc <j.couderc@ifrance.com>
           2000-2009, Josh Coalson
           2000-2009, Josh Coalson, 2011-2014 Xiph.Org Foundation
           1998-2000, Peter Alm, Mikael Alm, Olle Hallnas, Thomas Nilsson and 4Front Technologies
           2001, Peter Harris <peter.harris@hummingbird.com>
           2003, Philip Jägenstedt
           2000-2001, Robert Leslie
           2011-2014, Xiph.Org Foundation
License: GPL-2+

Files: lib-src/libflac/COPYING.Xiph
       lib-src/libflac/include/FLAC++/*
       lib-src/libflac/include/FLAC/*
       lib-src/libflac/include/share/alloc.h
       lib-src/libflac/include/share/compat.h
       lib-src/libflac/include/share/endswap.h
       lib-src/libflac/include/share/macros.h
       lib-src/libflac/include/share/private.h
       lib-src/libflac/include/share/safe_str.h
       lib-src/libflac/include/share/win_utf8_io.h
       lib-src/libflac/m4/bswap.m4
       lib-src/libflac/m4/endian.m4
       lib-src/libflac/m4/stack_protect.m4
       lib-src/libflac/src/libFLAC++/Makefile.am
       lib-src/libflac/src/libFLAC++/Makefile.lite
       lib-src/libflac/src/libFLAC++/metadata.cpp
       lib-src/libflac/src/libFLAC++/stream_decoder.cpp
       lib-src/libflac/src/libFLAC++/stream_encoder.cpp
       lib-src/libflac/src/libFLAC/Makefile.am
       lib-src/libflac/src/libFLAC/Makefile.lite
       lib-src/libflac/src/libFLAC/bitmath.c
       lib-src/libflac/src/libFLAC/bitreader.c
       lib-src/libflac/src/libFLAC/bitwriter.c
       lib-src/libflac/src/libFLAC/cpu.c
       lib-src/libflac/src/libFLAC/crc.c
       lib-src/libflac/src/libFLAC/fixed.c
       lib-src/libflac/src/libFLAC/fixed_intrin_sse2.c
       lib-src/libflac/src/libFLAC/fixed_intrin_ssse3.c
       lib-src/libflac/src/libFLAC/float.c
       lib-src/libflac/src/libFLAC/format.c
       lib-src/libflac/src/libFLAC/ia32/*
       lib-src/libflac/src/libFLAC/include/*
       lib-src/libflac/src/libFLAC/lpc.c
       lib-src/libflac/src/libFLAC/lpc_intrin_avx2.c
       lib-src/libflac/src/libFLAC/lpc_intrin_sse.c
       lib-src/libflac/src/libFLAC/lpc_intrin_sse2.c
       lib-src/libflac/src/libFLAC/lpc_intrin_sse41.c
       lib-src/libflac/src/libFLAC/memory.c
       lib-src/libflac/src/libFLAC/metadata_iterators.c
       lib-src/libflac/src/libFLAC/metadata_object.c
       lib-src/libflac/src/libFLAC/ogg_decoder_aspect.c
       lib-src/libflac/src/libFLAC/ogg_encoder_aspect.c
       lib-src/libflac/src/libFLAC/ogg_helper.c
       lib-src/libflac/src/libFLAC/ogg_mapping.c
       lib-src/libflac/src/libFLAC/stream_decoder.c
       lib-src/libflac/src/libFLAC/stream_encoder.c
       lib-src/libflac/src/libFLAC/stream_encoder_framing.c
       lib-src/libflac/src/libFLAC/stream_encoder_intrin_avx2.c
       lib-src/libflac/src/libFLAC/stream_encoder_intrin_sse2.c
       lib-src/libflac/src/libFLAC/stream_encoder_intrin_ssse3.c
       lib-src/libflac/src/libFLAC/window.c
       lib-src/libflac/src/share/grabbag/alloc.c
       lib-src/libflac/src/share/grabbag/snprintf.c
       lib-src/libflac/src/share/win_utf8_io/win_utf8_io.c
Copyright: 2000-2009, Josh Coalson
           2001-2009, Timothy B. Terriberry (tterribe@xiph.org)CC0 (Public domain)
           2011-2014, Xiph.Org Foundation
License: BSD-3-clause

Files: lib-src/libflac/Makefile.in
       lib-src/libflac/build/Makefile.in
       lib-src/libflac/doc/html/Makefile.in
       lib-src/libflac/doc/html/images/Makefile.in
       lib-src/libflac/examples/Makefile.in
       lib-src/libflac/examples/c/Makefile.in
       lib-src/libflac/examples/c/decode/Makefile.in
       lib-src/libflac/examples/c/encode/Makefile.in
       lib-src/libflac/examples/cpp/Makefile.in
       lib-src/libflac/examples/cpp/decode/Makefile.in
       lib-src/libflac/examples/cpp/encode/Makefile.in
       lib-src/libflac/include/Makefile.in
       lib-src/libflac/include/share/Makefile.in
       lib-src/libflac/include/share/grabbag/Makefile.in
       lib-src/libflac/include/test_libs_common/Makefile.in
       lib-src/libflac/m4/Makefile.in
       lib-src/libflac/m4/codeset.m4
       lib-src/libflac/m4/iconv.m4
       lib-src/libflac/m4/lib-ld.m4
       lib-src/libflac/m4/lib-link.m4
       lib-src/libflac/m4/lib-prefix.m4
       lib-src/libflac/m4/ltoptions.m4
       lib-src/libflac/m4/ltsugar.m4
       lib-src/libflac/m4/ltversion.m4
       lib-src/libflac/m4/lt~obsolete.m4
       lib-src/libflac/objs/Makefile.in
       lib-src/libflac/objs/debug/Makefile.in
       lib-src/libflac/objs/debug/bin/Makefile.in
       lib-src/libflac/objs/debug/lib/Makefile.in
       lib-src/libflac/objs/release/Makefile.in
       lib-src/libflac/objs/release/bin/Makefile.in
       lib-src/libflac/objs/release/lib/Makefile.in
       lib-src/libflac/src/Makefile.in
       lib-src/libflac/src/share/Makefile.in
       lib-src/libflac/src/test_grabbag/Makefile.in
       lib-src/libflac/src/utils/Makefile.in
       lib-src/libflac/test/Makefile.in
       lib-src/libflac/test/cuesheets/Makefile.in
       lib-src/libflac/test/flac-to-flac-metadata-test-files/Makefile.in
       lib-src/libflac/test/metaflac-test-files/Makefile.in
       lib-src/libflac/test/pictures/Makefile.in
Copyright: 1994-2013, Free Software Foundation, Inc
           2001-2009, Josh Coalson
           2011-2014, Xiph.Org Foundation
License: FSF_unlimited

Files: lib-src/libflac/COPYING.LGPL
       lib-src/libflac/include/share/grabbag.h
       lib-src/libflac/include/share/grabbag/cuesheet.h
       lib-src/libflac/include/share/grabbag/file.h
       lib-src/libflac/include/share/grabbag/replaygain.h
       lib-src/libflac/include/share/grabbag/seektable.h
       lib-src/libflac/include/share/replaygain_analysis.h
       lib-src/libflac/include/share/replaygain_synthesis.h
       lib-src/libflac/src/plugin_common/Makefile.am
       lib-src/libflac/src/plugin_common/Makefile.lite
       lib-src/libflac/src/plugin_common/all.h
       lib-src/libflac/src/plugin_common/defs.h
       lib-src/libflac/src/plugin_common/dither.h
       lib-src/libflac/src/plugin_common/tags.c
       lib-src/libflac/src/plugin_common/tags.h
       lib-src/libflac/src/share/grabbag/cuesheet.c
       lib-src/libflac/src/share/grabbag/file.c
       lib-src/libflac/src/share/grabbag/replaygain.c
       lib-src/libflac/src/share/grabbag/seektable.c
       lib-src/libflac/src/share/replaygain_analysis/replaygain_analysis.c
       lib-src/libflac/src/share/replaygain_synthesis/replaygain_synthesis.c
Copyright: 2001, David Robinson and Glen Sawyer
           1991-1999, Free Software Foundation, Inc
           2002, John Edwards
           2002-2009, Josh Coalson
           2011-2014, Xiph.Org Foundation
License: LGPL-2.1+

Files: lib-src/libflac/doc/Makefile.in
       lib-src/libflac/examples/c/decode/file/Makefile.in
       lib-src/libflac/examples/c/encode/file/Makefile.in
       lib-src/libflac/examples/cpp/decode/file/Makefile.in
       lib-src/libflac/examples/cpp/encode/file/Makefile.in
       lib-src/libflac/man/Makefile.in
       lib-src/libflac/src/flac/Makefile.in
       lib-src/libflac/src/metaflac/Makefile.in
       lib-src/libflac/src/plugin_xmms/Makefile.in
       lib-src/libflac/src/test_grabbag/cuesheet/Makefile.in
       lib-src/libflac/src/test_grabbag/picture/Makefile.in
       lib-src/libflac/src/test_libFLAC++/Makefile.in
       lib-src/libflac/src/test_libFLAC/Makefile.in
       lib-src/libflac/src/test_libs_common/Makefile.in
       lib-src/libflac/src/test_seeking/Makefile.in
       lib-src/libflac/src/test_streams/Makefile.in
       lib-src/libflac/src/utils/flacdiff/Makefile.in
       lib-src/libflac/src/utils/flactimer/Makefile.in
Copyright: 1994-2013, Free Software Foundation, Inc
           2000-2009, Josh Coalson
           2011-2014, Xiph.Org Foundation
License: FSF_unlimited or GPL-2+

Files: lib-src/libflac/include/FLAC++/Makefile.in
       lib-src/libflac/include/FLAC/Makefile.in
       lib-src/libflac/src/libFLAC++/Makefile.in
       lib-src/libflac/src/libFLAC/Makefile.in
       lib-src/libflac/src/libFLAC/ia32/Makefile.in
       lib-src/libflac/src/libFLAC/include/Makefile.in
       lib-src/libflac/src/libFLAC/include/private/Makefile.in
       lib-src/libflac/src/libFLAC/include/protected/Makefile.in
Copyright: 1994-2013, Free Software Foundation, Inc
           2000-2009, Josh Coalson
           2011-2014, Xiph.Org Foundation
License: BSD-3-clause or FSF_unlimited

Files: lib-src/libflac/ar-lib
       lib-src/libflac/compile
       lib-src/libflac/depcomp
       lib-src/libflac/missing
Copyright: 1996-2013, Free Software Foundation, Inc
License: GPL-2+ with AutoConf exception

Files: lib-src/libflac/include/share/getopt.h
       lib-src/libflac/src/share/getopt/getopt.c
       lib-src/libflac/src/share/getopt/getopt1.c
Copyright: 1989-1998, Free Software Foundation, Inc
License: LGPL-2+

Files: lib-src/libflac/configure
       lib-src/libflac/m4/libtool.m4
Copyright: 1992-2012, Free Software Foundation, Inc
License: FSF_unlimited or GPL-2+ with LibTool exception

Files: lib-src/libflac/config.guess
       lib-src/libflac/config.sub
Copyright: 1992-2014, Free Software Foundation, Inc
License: GPL-3+ with AutoConf exception

Files: lib-src/libflac/COPYING.FDL
Copyright: 2000-2002, Free Software Foundation, Inc
License: GFDL-NIV-1.2

Files: lib-src/libflac/doc/doxygen.footer.html
       lib-src/libflac/doc/doxygen.header.html
       lib-src/libflac/doc/html/changelog.html
       lib-src/libflac/doc/html/developers.html
       lib-src/libflac/doc/html/documentation.html
       lib-src/libflac/doc/html/documentation_bugs.html
       lib-src/libflac/doc/html/documentation_example_code.html
       lib-src/libflac/doc/html/documentation_format_overview.html
       lib-src/libflac/doc/html/documentation_tools.html
       lib-src/libflac/doc/html/documentation_tools_flac.html
       lib-src/libflac/doc/html/documentation_tools_metaflac.html
       lib-src/libflac/doc/html/faq.html
       lib-src/libflac/doc/html/features.html
       lib-src/libflac/doc/html/flac.css
       lib-src/libflac/doc/html/format.html
       lib-src/libflac/doc/html/id.html
       lib-src/libflac/doc/html/index.html
       lib-src/libflac/doc/html/ogg_mapping.html
Copyright: 2000-2009, Josh Coalson
           2011-2014, Xiph.Org Foundation
License: GFDL-1.1

Files: lib-src/libflac/doc/html/license.html
Copyright: 2004-2009, Josh Coalson
           2011-2014, Xiph.Org Foundation
License: GFDL-1.1 or GPL

Files: lib-src/libflac/install-sh
Copyright: 1994, X Consortium
License: Expat

Files: lib-src/libflac/ltmain.sh
Copyright: no copyright
License: GPL-2+ with LibTool exception

Files: lib-src/libflac/src/flac/local_string_utils.c
Copyright: 1998, Todd C. Miller <Todd.Miller@courtesan.com>
License: ISC

Files: lib-src/libflac/src/libFLAC/include/private/md5.h
       lib-src/libflac/src/libFLAC/md5.c
Copyright: no copyright
License: public-domain

Files: lib-src/libflac/src/plugin_common/Makefile.in
Copyright: 1994-2013, Free Software Foundation, Inc
           2002-2009, Josh Coalson
           2011-2014, Xiph.Org Foundation
License: FSF_unlimited or LGPL-2.1+

Files: lib-src/libid3tag/*
Copyright: 1989-1991, Free Software Foundation, Inc
           2000-2004, Underbit Technologies, Inc
License: GPL-2+

Files: lib-src/libid3tag/CHANGES
       lib-src/libid3tag/CREDITS
       lib-src/libid3tag/INSTALL
       lib-src/libid3tag/README
       lib-src/libid3tag/TODO
       lib-src/libid3tag/VERSION
       lib-src/libid3tag/config.h.in
       lib-src/libid3tag/libid3tag-srcdir.patch
       lib-src/libid3tag/libid3tag.list.in
       lib-src/libid3tag/libid3tag.vcproj
       lib-src/libid3tag/mkinstalldirs
       lib-src/libid3tag/msvc++/config.h
       lib-src/libid3tag/msvc++/libid3tag.dsp
       lib-src/libid3tag/stamp-h.in
Copyright: 2000-2004, Underbit Technologies, Inc
License: GPL-2+
Comment: No explicit license found, using license(s) from:
 lib-src/libid3tag/COPYING
 lib-src/libid3tag/COPYRIGHT

Files: lib-src/libid3tag/Makefile.in
       lib-src/libid3tag/m4/*
       lib-src/libid3tag/msvc++/Makefile.in
Copyright: 1994-2013, Free Software Foundation, Inc
License: FSF_unlimited

Files: lib-src/libid3tag/compile
       lib-src/libid3tag/depcomp
       lib-src/libid3tag/ltconfig
       lib-src/libid3tag/missing
Copyright: 1996-2013, Free Software Foundation, Inc
License: GPL-2+ with AutoConf exception

Files: lib-src/libid3tag/configure
       lib-src/libid3tag/m4/libtool.m4
Copyright: 1992-2012, Free Software Foundation, Inc
License: FSF_unlimited or GPL-2+ with LibTool exception

Files: lib-src/libid3tag/config.guess
       lib-src/libid3tag/config.sub
Copyright: 1992-2013, Free Software Foundation, Inc
License: GPL-3+ with AutoConf exception

Files: lib-src/libid3tag/install-sh
Copyright: 1994, X Consortium
License: Expat

Files: lib-src/libid3tag/ltmain.sh
Copyright: no copyright
License: GPL-2+ with LibTool exception

Files: lib-src/libmad/*
Copyright: 2000-2001, Andre McCurdy <armccurdy@yahoo.co.uk>
           1989-1991, Free Software Foundation, Inc
           2000-2001, Robert Leslie
           2000-2004, Underbit Technologies, Inc
License: GPL-2+

Files: lib-src/libmad/CHANGES
       lib-src/libmad/CREDITS
       lib-src/libmad/INSTALL
       lib-src/libmad/TODO
       lib-src/libmad/VERSION
       lib-src/libmad/libmad-mp2-out-of-spec.patch
       lib-src/libmad/libmad.list.in
       lib-src/libmad/libmad.vcproj
       lib-src/libmad/mkinstalldirs
       lib-src/libmad/msvc++/config.h
       lib-src/libmad/msvc++/libmad.dsp
       lib-src/libmad/osx-universal-build.patch
       lib-src/libmad/stamp-h.in
Copyright: 2000-2004, Underbit Technologies, Inc
License: GPL-2+
Comment: No explicit license found, using license(s) from:
 lib-src/libmad/COPYING
 lib-src/libmad/COPYRIGHT

Files: lib-src/libmad/compile
       lib-src/libmad/config.guess
       lib-src/libmad/config.sub
       lib-src/libmad/depcomp
       lib-src/libmad/missing
Copyright: 1996-2013, Free Software Foundation, Inc
License: GPL-2+ with AutoConf exception

Files: lib-src/libmad/Makefile.in
       lib-src/libmad/msvc++/Makefile.in
Copyright: 1994-2013, Free Software Foundation, Inc
License: FSF_unlimited

Files: lib-src/libmad/README
Copyright: 2000-2004, Underbit Technologies, Inc
License: GPL

Files: lib-src/libmad/configure
Copyright: 1992-2012, Free Software Foundation, Inc
License: FSF_unlimited or GPL-2+ with LibTool exception

Files: lib-src/libmad/install-sh
Copyright: 1991, the Massachusetts Institute of Technology
License: MIT/X11

Files: lib-src/libmad/ltmain.sh
Copyright: no copyright
License: GPL-2+ with LibTool exception

Files: lib-src/libnyquist/nyquist/license.txt
Copyright: 1984-2002, David Michael Betz
           2000-2002, Roger B. Dannenberg
License: BSD-3-clause or LGPL

Files: lib-src/libogg/*
Copyright: 2008, The IETF Trust
           2003, The Internet Society
           1994-2013, Xiph.Org Foundation
License: BSD-3-clause
Comment: No explicit license found, using license(s) from:
 lib-src/libogg/COPYING

Files: lib-src/libogg/Makefile.in
       lib-src/libogg/doc/Makefile.in
       lib-src/libogg/doc/libogg/Makefile.in
       lib-src/libogg/include/Makefile.in
       lib-src/libogg/include/ogg/Makefile.in
       lib-src/libogg/m4/*
       lib-src/libogg/src/Makefile.in
Copyright: 1994-2013, Free Software Foundation, Inc
License: FSF_unlimited

Files: lib-src/libogg/compile
       lib-src/libogg/depcomp
       lib-src/libogg/missing
Copyright: 1996-2013, Free Software Foundation, Inc
License: GPL-2+ with AutoConf exception

Files: lib-src/libogg/configure
       lib-src/libogg/m4/libtool.m4
Copyright: 1992-2012, Free Software Foundation, Inc
License: FSF_unlimited or GPL-2+ with LibTool exception

Files: lib-src/libogg/config.guess
       lib-src/libogg/config.sub
Copyright: 1992-2013, Free Software Foundation, Inc
License: GPL-3+ with AutoConf exception

Files: lib-src/libogg/COPYING
Copyright: 2002, Xiph.org Foundation
License: BSD-3-clause

Files: lib-src/libogg/install-sh
Copyright: 1994, X Consortium
License: Expat

Files: lib-src/libogg/ltmain.sh
Copyright: no copyright
License: GPL-2+ with LibTool exception

Files: lib-src/libsndfile/*
Copyright: 1999-2011, Erik de Castro Lopo <erikd@mega-nerd.com>
           1992-1994, Jutta Degener and Carsten Bormann
           1992, Jutta Degener and Carsten Bormann, Technische
           1999-2010, erikd@mega-nerd.com
License: LGPL-2.1+
Comment: No explicit license found, using license(s) from:
 lib-src/libsndfile/COPYING

Files: lib-src/libsndfile/COPYING
       lib-src/libsndfile/Octave/octave_test.m
       lib-src/libsndfile/Octave/sndfile.cc
       lib-src/libsndfile/src/G72x/g72x.h
       lib-src/libsndfile/src/aiff.c
       lib-src/libsndfile/src/alaw.c
       lib-src/libsndfile/src/au.c
       lib-src/libsndfile/src/audio_detect.c
       lib-src/libsndfile/src/avr.c
       lib-src/libsndfile/src/broadcast.c
       lib-src/libsndfile/src/caf.c
       lib-src/libsndfile/src/chanmap.c
       lib-src/libsndfile/src/chanmap.h
       lib-src/libsndfile/src/chunk.c
       lib-src/libsndfile/src/command.c
       lib-src/libsndfile/src/common.c
       lib-src/libsndfile/src/common.h
       lib-src/libsndfile/src/dither.c
       lib-src/libsndfile/src/double64.c
       lib-src/libsndfile/src/dwd.c
       lib-src/libsndfile/src/dwvw.c
       lib-src/libsndfile/src/file_io.c
       lib-src/libsndfile/src/flac.c
       lib-src/libsndfile/src/float32.c
       lib-src/libsndfile/src/g72x.c
       lib-src/libsndfile/src/gsm610.c
       lib-src/libsndfile/src/htk.c
       lib-src/libsndfile/src/id3.c
       lib-src/libsndfile/src/ima_adpcm.c
       lib-src/libsndfile/src/interleave.c
       lib-src/libsndfile/src/ircam.c
       lib-src/libsndfile/src/macbinary3.c
       lib-src/libsndfile/src/macos.c
       lib-src/libsndfile/src/mat4.c
       lib-src/libsndfile/src/mat5.c
       lib-src/libsndfile/src/mpc2k.c
       lib-src/libsndfile/src/ms_adpcm.c
       lib-src/libsndfile/src/nist.c
       lib-src/libsndfile/src/paf.c
       lib-src/libsndfile/src/pcm.c
       lib-src/libsndfile/src/pvf.c
       lib-src/libsndfile/src/raw.c
       lib-src/libsndfile/src/rf64.c
       lib-src/libsndfile/src/rx2.c
       lib-src/libsndfile/src/sd2.c
       lib-src/libsndfile/src/sds.c
       lib-src/libsndfile/src/sf_unistd.h
       lib-src/libsndfile/src/sfconfig.h
       lib-src/libsndfile/src/sfendian.h
       lib-src/libsndfile/src/sndfile.c
       lib-src/libsndfile/src/sndfile.h.in
       lib-src/libsndfile/src/strings.c
       lib-src/libsndfile/src/svx.c
       lib-src/libsndfile/src/test_audio_detect.c
       lib-src/libsndfile/src/test_broadcast_var.c
       lib-src/libsndfile/src/test_conversions.c
       lib-src/libsndfile/src/test_endswap.c
       lib-src/libsndfile/src/test_endswap.tpl
       lib-src/libsndfile/src/test_file_io.c
       lib-src/libsndfile/src/test_float.c
       lib-src/libsndfile/src/test_log_printf.c
       lib-src/libsndfile/src/test_main.c
       lib-src/libsndfile/src/test_main.h
       lib-src/libsndfile/src/test_strncpy_crlf.c
       lib-src/libsndfile/src/txw.c
       lib-src/libsndfile/src/ulaw.c
       lib-src/libsndfile/src/voc.c
       lib-src/libsndfile/src/vox_adpcm.c
       lib-src/libsndfile/src/w64.c
       lib-src/libsndfile/src/wav.c
       lib-src/libsndfile/src/wav_w64.c
       lib-src/libsndfile/src/wav_w64.h
       lib-src/libsndfile/src/windows.c
       lib-src/libsndfile/src/wve.c
       lib-src/libsndfile/src/xi.c
Copyright: 2004-2005, David Viens <davidv@plogue.com>
           1999-2011, Erik de Castro Lopo <erikd@mega-nerd.com>
           1991-1999, Free Software Foundation, Inc
           1993, NuEdge Development
           2004, Paavo Jumppanen
           2006, Paul Davis <paul@linuxaudiosystems.com>
           2007, Reuben Thomas
           2003, Ross Bencina <rbencina@iprimus.com.au>
           2004, Tobias Gehrig <tgehrig@ira.uka.de>
           2009, Uli Franke <cls@nebadje.org>
License: LGPL-2.1+

Files: lib-src/libsndfile/Octave/sndfile_load.m
       lib-src/libsndfile/Octave/sndfile_play.m
       lib-src/libsndfile/Octave/sndfile_save.m
       lib-src/libsndfile/examples/sndfilehandle.cc
       lib-src/libsndfile/programs/sndfile-play-beos.cpp
       lib-src/libsndfile/regtest/checksum.c
       lib-src/libsndfile/regtest/database.c
       lib-src/libsndfile/regtest/regtest.h
       lib-src/libsndfile/regtest/sndfile-regtest.c
       lib-src/libsndfile/src/G72x/g72x_test.c
       lib-src/libsndfile/tests/aiff_rw_test.c
       lib-src/libsndfile/tests/alaw_test.c
       lib-src/libsndfile/tests/benchmark.c
       lib-src/libsndfile/tests/benchmark.tpl
       lib-src/libsndfile/tests/checksum_test.c
       lib-src/libsndfile/tests/command_test.c
       lib-src/libsndfile/tests/cpp_test.cc
       lib-src/libsndfile/tests/dft_cmp.c
       lib-src/libsndfile/tests/dft_cmp.h
       lib-src/libsndfile/tests/dither_test.c
       lib-src/libsndfile/tests/dwvw_test.c
       lib-src/libsndfile/tests/error_test.c
       lib-src/libsndfile/tests/external_libs_test.c
       lib-src/libsndfile/tests/fix_this.c
       lib-src/libsndfile/tests/floating_point_test.c
       lib-src/libsndfile/tests/floating_point_test.tpl
       lib-src/libsndfile/tests/generate.c
       lib-src/libsndfile/tests/generate.h
       lib-src/libsndfile/tests/header_test.c
       lib-src/libsndfile/tests/header_test.tpl
       lib-src/libsndfile/tests/headerless_test.c
       lib-src/libsndfile/tests/largefile_test.c
       lib-src/libsndfile/tests/locale_test.c
       lib-src/libsndfile/tests/lossy_comp_test.c
       lib-src/libsndfile/tests/misc_test.c
       lib-src/libsndfile/tests/multi_file_test.c
       lib-src/libsndfile/tests/ogg_test.c
       lib-src/libsndfile/tests/pcm_test.c
       lib-src/libsndfile/tests/pcm_test.tpl
       lib-src/libsndfile/tests/peak_chunk_test.c
       lib-src/libsndfile/tests/pipe_test.c
       lib-src/libsndfile/tests/pipe_test.tpl
       lib-src/libsndfile/tests/raw_test.c
       lib-src/libsndfile/tests/rdwr_test.c
       lib-src/libsndfile/tests/rdwr_test.tpl
       lib-src/libsndfile/tests/scale_clip_test.c
       lib-src/libsndfile/tests/scale_clip_test.tpl
       lib-src/libsndfile/tests/sfversion.c
       lib-src/libsndfile/tests/stdin_test.c
       lib-src/libsndfile/tests/stdio_test.c
       lib-src/libsndfile/tests/stdout_test.c
       lib-src/libsndfile/tests/string_test.c
       lib-src/libsndfile/tests/ulaw_test.c
       lib-src/libsndfile/tests/utils.c
       lib-src/libsndfile/tests/utils.h
       lib-src/libsndfile/tests/utils.tpl
       lib-src/libsndfile/tests/virtual_io_test.c
       lib-src/libsndfile/tests/vorbis_test.c
       lib-src/libsndfile/tests/win32_ordinal_test.c
       lib-src/libsndfile/tests/win32_test.c
       lib-src/libsndfile/tests/write_read_test.c
       lib-src/libsndfile/tests/write_read_test.tpl
Copyright: 1999-2011, Erik de Castro Lopo <erikd@mega-nerd.com>
           2001, Marcus Overhagen <marcus@overhagen.de>
License: GPL-2+

Files: lib-src/libsndfile/examples/generate.c
       lib-src/libsndfile/examples/list_formats.c
       lib-src/libsndfile/examples/make_sine.c
       lib-src/libsndfile/examples/sfprocess.c
       lib-src/libsndfile/examples/sndfile-to-text.c
       lib-src/libsndfile/programs/common.c
       lib-src/libsndfile/programs/common.h
       lib-src/libsndfile/programs/sndfile-cmp.c
       lib-src/libsndfile/programs/sndfile-concat.c
       lib-src/libsndfile/programs/sndfile-convert.c
       lib-src/libsndfile/programs/sndfile-deinterleave.c
       lib-src/libsndfile/programs/sndfile-info.c
       lib-src/libsndfile/programs/sndfile-interleave.c
       lib-src/libsndfile/programs/sndfile-metadata-get.c
       lib-src/libsndfile/programs/sndfile-metadata-set.c
       lib-src/libsndfile/programs/sndfile-play.c
       lib-src/libsndfile/programs/sndfile-salvage.c
       lib-src/libsndfile/programs/test-sndfile-metadata-set.py
       lib-src/libsndfile/src/binheader_writef_check.py
       lib-src/libsndfile/src/create_symbols_file.py
       lib-src/libsndfile/src/sndfile.hh
       lib-src/libsndfile/tests/pedantic-header-test.sh.in
       lib-src/libsndfile/tests/test_wrapper.sh.in
Copyright: 2008, Conrad Parker <conrad@metadecks.org>
           1999-2011, Erik de Castro Lopo <erikd@mega-nerd.com>
           2008-2010, George Blood Audio
License: BSD-3-clause

Files: lib-src/libsndfile/M4/Makefile.in
       lib-src/libsndfile/M4/ltoptions.m4
       lib-src/libsndfile/M4/ltsugar.m4
       lib-src/libsndfile/M4/ltversion.m4
       lib-src/libsndfile/M4/lt~obsolete.m4
       lib-src/libsndfile/Makefile.in
       lib-src/libsndfile/Octave/Makefile.in
       lib-src/libsndfile/Win32/Makefile.in
       lib-src/libsndfile/doc/Makefile.in
       lib-src/libsndfile/examples/Makefile.in
       lib-src/libsndfile/man/Makefile.in
       lib-src/libsndfile/programs/Makefile.in
       lib-src/libsndfile/regtest/Makefile.in
       lib-src/libsndfile/src/G72x/Makefile.in
       lib-src/libsndfile/src/GSM610/Makefile.in
       lib-src/libsndfile/src/Makefile.in
       lib-src/libsndfile/tests/Makefile.in
Copyright: 1994-2013, Free Software Foundation, Inc
License: FSF_unlimited

Files: lib-src/libsndfile/Cfg/*
       lib-src/libsndfile/M4/extra_pkg.m4
Copyright: 1996-2013, Free Software Foundation, Inc
           2004, Scott James Remnant <scott@netsplit.com>
License: GPL-2+ with AutoConf exception

Files: lib-src/libsndfile/M4/libtool.m4
       lib-src/libsndfile/configure
Copyright: 1992-2012, Free Software Foundation, Inc
License: FSF_unlimited or GPL-2+ with LibTool exception

Files: lib-src/libsndfile/Cfg/config.guess
       lib-src/libsndfile/Cfg/config.sub
Copyright: 1992-2013, Free Software Foundation, Inc
License: GPL-3+ with AutoConf exception

Files: lib-src/libsndfile/Cfg/install-sh
Copyright: 1994, X Consortium
License: Expat

Files: lib-src/libsndfile/Cfg/ltmain.sh
Copyright: no copyright
License: GPL-2+ with LibTool exception

Files: lib-src/libsndfile/INSTALL
Copyright: 1994-2013, Free Software Foundation
License: Permissive

Files: lib-src/libsndfile/src/ima_oki_adpcm.c
       lib-src/libsndfile/src/ima_oki_adpcm.h
       lib-src/libsndfile/src/test_ima_oki_adpcm.c
Copyright: 2007, <robs@users.sourceforge.net>
           2007-2011, Erik de Castro Lopo <erikd@mega-nerd.com>
License: LGPL-2+

Files: lib-src/libsndfile/src/ogg.c
Copyright: 2002-2011, Erik de Castro Lopo <erikd@mega-nerd.com>
           2007, John ffitch
           2002, Xiph.org Foundation
License: BSD-3-clause or LGPL-2.1+

Files: lib-src/libsoxr/*
Copyright: 2011, Julien Pommier ( pommier@modartt.com )
           1996-2001, Takuya OOURA
           2007-2013, robs@users.sourceforge.net
           2004, the University Corporation for Atmospheric
License: LGPL-2.1+
Comment: No explicit license found, using license(s) from:
 lib-src/libsoxr/COPYING.LGPL

Files: lib-src/libsoxr/COPYING.LGPL
       lib-src/libsoxr/LICENCE
       lib-src/libsoxr/src/soxr-lsr.h
       lib-src/libsoxr/src/soxr.h
Copyright: 1991-1999, Free Software Foundation, Inc
           2007-2013, robs@users.sourceforge.net
License: LGPL-2.1+

Files: lib-src/libsoxr/cmake/Modules/FindOpenMP.cmake
       lib-src/libsoxr/cmake/Modules/FindSIMD.cmake
Copyright: 2008-2009, André Rigland Brodtkorb <Andre.Brodtkorb@ifi.uio.no>
           2009, Kitware, Inc
License: BSD-3-clause

Files: lib-src/libvamp/*
Copyright: 2008, Centre For Digital Music, Queen Mary, University of London
License: Expat
Comment: No explicit license found, using license(s) from:
 lib-src/libvamp/COPYING

Files: lib-src/libvamp/COPYING
       lib-src/libvamp/examples/AmplitudeFollower.cpp
       lib-src/libvamp/examples/AmplitudeFollower.h
       lib-src/libvamp/examples/FixedTempoEstimator.cpp
       lib-src/libvamp/examples/FixedTempoEstimator.h
       lib-src/libvamp/examples/PercussionOnsetDetector.cpp
       lib-src/libvamp/examples/PercussionOnsetDetector.h
       lib-src/libvamp/examples/PowerSpectrum.cpp
       lib-src/libvamp/examples/PowerSpectrum.h
       lib-src/libvamp/examples/SpectralCentroid.cpp
       lib-src/libvamp/examples/SpectralCentroid.h
       lib-src/libvamp/examples/ZeroCrossing.cpp
       lib-src/libvamp/examples/ZeroCrossing.h
       lib-src/libvamp/examples/plugins.cpp
       lib-src/libvamp/host/*
       lib-src/libvamp/src/vamp-hostsdk/PluginBufferingAdapter.cpp
       lib-src/libvamp/src/vamp-hostsdk/PluginChannelAdapter.cpp
       lib-src/libvamp/src/vamp-hostsdk/PluginHostAdapter.cpp
       lib-src/libvamp/src/vamp-hostsdk/PluginLoader.cpp
       lib-src/libvamp/src/vamp-hostsdk/PluginSummarisingAdapter.cpp
       lib-src/libvamp/src/vamp-hostsdk/PluginWrapper.cpp
       lib-src/libvamp/src/vamp-hostsdk/RealTime.cpp
       lib-src/libvamp/src/vamp-hostsdk/Window.h
       lib-src/libvamp/src/vamp-sdk/FFT.cpp
       lib-src/libvamp/src/vamp-sdk/PluginAdapter.cpp
       lib-src/libvamp/src/vamp-sdk/RealTime.cpp
       lib-src/libvamp/vamp-hostsdk/*
       lib-src/libvamp/vamp-sdk/*
       lib-src/libvamp/vamp/*
Copyright: 2000-2006, Chris Cannam
           2006-2012, Chris Cannam and QMUL
           2006, Dan Stowell
           2007-2009, QMUL
           2006-2009, Queen Mary, University of London
License: Expat

Files: lib-src/libvamp/configure
Copyright: 1992-2012, Free Software Foundation, Inc
License: FSF_unlimited

Files: lib-src/libvamp/src/vamp-hostsdk/PluginInputDomainAdapter.cpp
Copyright: 2006-2009, Chris Cannam and QMUL
License: Expat or GPL

Files: lib-src/libvorbis/*
Copyright: 1992-1994, Jutta Degener and Carsten Bormann
           2008, The IETF Trust
           1994-2010, Xiph.Org Foundation
License: BSD-3-clause
Comment: No explicit license found, using license(s) from:
 lib-src/libvorbis/COPYING

Files: lib-src/libvorbis/Makefile.in
       lib-src/libvorbis/doc/Makefile.in
       lib-src/libvorbis/doc/libvorbis/Makefile.in
       lib-src/libvorbis/doc/vorbisenc/Makefile.in
       lib-src/libvorbis/doc/vorbisfile/Makefile.in
       lib-src/libvorbis/examples/Makefile.in
       lib-src/libvorbis/include/Makefile.in
       lib-src/libvorbis/include/vorbis/Makefile.in
       lib-src/libvorbis/lib/Makefile.in
       lib-src/libvorbis/lib/books/Makefile.in
       lib-src/libvorbis/lib/books/coupled/Makefile.in
       lib-src/libvorbis/lib/books/floor/Makefile.in
       lib-src/libvorbis/lib/books/uncoupled/Makefile.in
       lib-src/libvorbis/lib/modes/Makefile.in
       lib-src/libvorbis/m4/Makefile.in
       lib-src/libvorbis/m4/ltoptions.m4
       lib-src/libvorbis/m4/ltsugar.m4
       lib-src/libvorbis/m4/ltversion.m4
       lib-src/libvorbis/m4/lt~obsolete.m4
       lib-src/libvorbis/test/Makefile.in
       lib-src/libvorbis/vq/Makefile.in
Copyright: 1994-2013, Free Software Foundation, Inc
License: FSF_unlimited

Files: lib-src/libvorbis/COPYING
       lib-src/libvorbis/symbian/*
Copyright: 2003, Commonwealth Scientific and Industrial Research
           2002-2008, Xiph.org Foundation
License: BSD-3-clause

Files: lib-src/libvorbis/compile
       lib-src/libvorbis/depcomp
       lib-src/libvorbis/m4/pkg.m4
       lib-src/libvorbis/missing
Copyright: 1996-2013, Free Software Foundation, Inc
           2004, Scott James Remnant <scott@netsplit.com>
License: GPL-2+ with AutoConf exception

Files: lib-src/libvorbis/configure
       lib-src/libvorbis/m4/libtool.m4
Copyright: 1992-2012, Free Software Foundation, Inc
License: FSF_unlimited or GPL-2+ with LibTool exception

Files: lib-src/libvorbis/config.guess
       lib-src/libvorbis/config.sub
Copyright: 1992-2013, Free Software Foundation, Inc
License: GPL-3+ with AutoConf exception

Files: lib-src/libvorbis/install-sh
Copyright: 1994, X Consortium
License: Expat

Files: lib-src/libvorbis/ltmain.sh
Copyright: no copyright
License: GPL-2+ with LibTool exception

Files: lib-src/lv2/lilv/*
Copyright: no copyright
License: ISC
Comment: No explicit license found, using license(s) from:
 lib-src/lv2/lilv/COPYING

Files: lib-src/lv2/lilv/COPYING
       lib-src/lv2/lilv/bindings/test/bindings_test_plugin.c
       lib-src/lv2/lilv/bindings/test/bindings_test_plugin.ttl.in
       lib-src/lv2/lilv/bindings/test/python/*
       lib-src/lv2/lilv/lilv/*
       lib-src/lv2/lilv/src/*
       lib-src/lv2/lilv/test/lilv_test.c
       lib-src/lv2/lilv/test/test_plugin.c
       lib-src/lv2/lilv/test/test_plugin.ttl.in
       lib-src/lv2/lilv/utils/bench.h
       lib-src/lv2/lilv/utils/lilv-bench.c
       lib-src/lv2/lilv/utils/lv2bench.c
       lib-src/lv2/lilv/utils/lv2info.c
       lib-src/lv2/lilv/utils/lv2ls.c
       lib-src/lv2/lilv/utils/uri_table.h
Copyright: 2006-2012, David Robillard <d@drobilla.net>
           2007-2014, David Robillard <http://drobilla.net>
           2013, Kaspar Emanuel <kaspar.emanuel@gmail.com>
           2008, Krzysztof Foltman
           2006, Steve Harris <steve@plugin.org.uk>
License: ISC

Files: lib-src/lv2/lv2/*
Copyright: Massachusetts Institute of Technology, European Research Consortium
           2012, David Robillard <d@drobilla.net>
           2004-2009, Edd Dumbill
           1986, International Organization for Standardization
           1998-2007, W3C (MIT, ERCIM, Keio)
           1998-2000, W3C (MIT, INRIA, Keio)
           1998-2005, World Wide Web Consortium for Informatics and Mathematics, Keio University
License: ISC
Comment: No explicit license found, using license(s) from:
 lib-src/lv2/lv2/COPYING

Files: lib-src/lv2/lv2/COPYING
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/atom/atom-test.c
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/atom/atom.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/atom/forge.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/atom/util.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/buf-size/buf-size.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/data-access/data-access.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/dynmanifest/dynmanifest.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/event/event-helpers.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/event/event.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/instance-access/instance-access.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/log/log.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/log/logger.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/midi/midi.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/morph/morph.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/options/options.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/parameters/parameters.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/patch/patch.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/port-groups/port-groups.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/port-props/port-props.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/presets/presets.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/resize-port/resize-port.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/state/state.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/time/time.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/uri-map/uri-map.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/urid/urid.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/ext/worker/worker.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/extensions/ui/ui.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/extensions/units/units.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/lv2core/lv2.h
       lib-src/lv2/lv2/lv2/lv2plug.in/ns/meta/meta.ttl
       lib-src/lv2/lv2/lv2specgen/lv2docgen.py
       lib-src/lv2/lv2/plugins/eg-amp.lv2/amp.c
       lib-src/lv2/lv2/plugins/eg-fifths.lv2/fifths.c
       lib-src/lv2/lv2/plugins/eg-fifths.lv2/uris.h
       lib-src/lv2/lv2/plugins/eg-metro.lv2/metro.c
       lib-src/lv2/lv2/plugins/eg-midigate.lv2/midigate.c
       lib-src/lv2/lv2/plugins/eg-sampler.lv2/sampler.c
       lib-src/lv2/lv2/plugins/eg-sampler.lv2/sampler_ui.c
       lib-src/lv2/lv2/plugins/eg-sampler.lv2/uris.h
       lib-src/lv2/lv2/plugins/eg-scope.lv2/examploscope.c
       lib-src/lv2/lv2/plugins/eg-scope.lv2/examploscope_ui.c
       lib-src/lv2/lv2/plugins/eg-scope.lv2/uris.h
Copyright: 2006-2014, David Robillard <d@drobilla.net>
           2007-2014, David Robillard <http://drobilla.net>
           2011, Gabriel M. Beddingfield <gabrbedd@gmail.com>
           2011, Gabriel M. Beddingfield <gabriel@teuton.org>
           2011, James Morris <jwm.art.net@gmail.com>
           2006-2011, Lars Luthman <lars.luthman@gmail.com>
           2010, Leonard Ritter <paniq@paniq.org>
           2000-2002, Richard W.E. Furse
           2013, Robin Gareus <robin@gareus.org>
           2008-2011, Stefano D'Angelo <zanga.mail@gmail.com>
           2006, Steve Harris <steve@plugin.org.uk>
           2006-2012, Steve Harris, David Robillard
License: ISC

Files: lib-src/lv2/lv2/lv2/lv2plug.in/ns/index.html.in
       lib-src/lv2/lv2/lv2specgen/template.html
Copyright: no copyright
License: CC-BY-SA

Files: lib-src/lv2/lv2/lv2specgen/lv2specgen.py
Copyright: 2003-2008, Christopher Schmidt <crschmidt@crschmidt.net>
           2009-2014, David Robillard <d@drobilla.net>
           2007-2008, Sergio Fernández <sergio.fernandez@fundacionctic.org>
           2005-2008, Uldis Bojars <uldis.bojars@deri.org>
License: Expat

Files: lib-src/lv2/serd/*
Copyright: 2011-2012, David Robillard
License: ISC
Comment: No explicit license found, using license(s) from:
 lib-src/lv2/serd/COPYING

Files: lib-src/lv2/serd/COPYING
       lib-src/lv2/serd/serd/*
       lib-src/lv2/serd/src/*
       lib-src/lv2/serd/tests/serd_test.c
Copyright: 2011-2014, David Robillard <http://drobilla.net>
License: ISC

Files: lib-src/lv2/serd/tests/TurtleTests/*
Copyright: no copyright
License: W3C and BSD-3-clause
Comment: No explicit license found, using license(s) from:
 lib-src/lv2/serd/tests/TurtleTests/LICENSE

Files: lib-src/lv2/serd/tests/TurtleTests/LICENSE
Copyright: no copyright
License: W3C and BSD-3-clause

Files: lib-src/lv2/serdnode.patch
Copyright: 2011-2012, David Robillard <http://drobilla.net>
License: ISC

Files: lib-src/lv2/sord/*
Copyright: 2011-2013, David Robillard
License: ISC
Comment: No explicit license found, using license(s) from:
 lib-src/lv2/sord/COPYING

Files: lib-src/lv2/sord/COPYING
       lib-src/lv2/sord/sord/*
       lib-src/lv2/sord/src/*
Copyright: 2011-2014, David Robillard <http://drobilla.net>
License: ISC

Files: lib-src/lv2/sratom/*
Copyright: no copyright
License: ISC
Comment: No explicit license found, using license(s) from:
 lib-src/lv2/sratom/COPYING

Files: lib-src/lv2/sratom/COPYING
       lib-src/lv2/sratom/sratom/*
       lib-src/lv2/sratom/src/*
       lib-src/lv2/sratom/tests/*
Copyright: 2012-2014, David Robillard <http://drobilla.net>
License: ISC

Files: lib-src/lv2/suil/*
Copyright: no copyright
License: ISC
Comment: No explicit license found, using license(s) from:
 lib-src/lv2/suil/COPYING

Files: lib-src/lv2/suil/COPYING
       lib-src/lv2/suil/src/*
       lib-src/lv2/suil/suil/*
Copyright: 2007-2014, David Robillard <http://drobilla.net>
License: ISC

Files: lib-src/portaudio-v19/*
Copyright: 1999-2007, Andrew Baldwin, Ross Bencina
           1999-2004, Andrew Baldwin, Ross Bencina, Phil Burk
           2004, Arve Knudsen <aknuds-1@broadpark.no>
           2005-2009, Arve Knudsen <arve.knudsen@gmail.com>
           2005-2006, Bjorn Roche
           2006-2010, David Viens, Dmitry Kostjuchenko
           2011, Eliot Blennerhassett <eblennerhassett@audioscience.com>
           2003, Fred Gleason <fredg@salemradiolabs.com>
           2002, Joshua Haberman <joshua@haberman.com>
           2008, Kevin Kofler <kevin.kofler@chello.at>
           2005-2006, Ludwig Schwardt <schwardt@sun.ac.za>
           1999-2000, Phil Burk
           1999-2010, Phil Burk and Ross Bencina
           1999-2006, Phil Burk, Robert Marsanyi and Ross Bencina
           1999-2002, Phil Burk, Ross Bencina
           1999-2011, Ross Bencina
           1999-2010, Ross Bencina and Phil Burk
           1999-2007, Ross Bencina, Andrew Baldwin
           1999-2011, Ross Bencina, Dmitry Kostjuchenko
           1999-2011, Ross Bencina, Phil Burk
           1999-2007, Ross Bencina, Phil Burk, Robert Marsanyi
           2004, Stefan Westerfeld <stefan@space.twc.de>
           2000-2002, Stephane Letz, Phil Burk, Ross Bencina
           1994, X Consortium
License: Expat

Files: lib-src/portaudio-v19/CMakeLists.txt
       lib-src/portaudio-v19/Doxyfile
       lib-src/portaudio-v19/Doxyfile.developer
       lib-src/portaudio-v19/Makefile.in
       lib-src/portaudio-v19/README.configure.txt
       lib-src/portaudio-v19/SConstruct
       lib-src/portaudio-v19/bindings/java/c/build/*
       lib-src/portaudio-v19/bindings/java/c/src/com_portaudio_BlockingStream.h
       lib-src/portaudio-v19/bindings/java/c/src/com_portaudio_PortAudio.h
       lib-src/portaudio-v19/bindings/java/jportaudio.dox
       lib-src/portaudio-v19/bindings/java/jportaudio/.classpath
       lib-src/portaudio-v19/bindings/java/jportaudio/.project
       lib-src/portaudio-v19/bindings/java/jportaudio/jtests/com/portaudio/PlaySine.java
       lib-src/portaudio-v19/bindings/java/scripts/*
       lib-src/portaudio-v19/build/*
       lib-src/portaudio-v19/clear_svnrevision.sh
       lib-src/portaudio-v19/cmake_support/*
       lib-src/portaudio-v19/configure.in
       lib-src/portaudio-v19/doc/src/api_overview.dox
       lib-src/portaudio-v19/doc/src/images/*
       lib-src/portaudio-v19/doc/src/mainpage.dox
       lib-src/portaudio-v19/doc/src/srcguide.dox
       lib-src/portaudio-v19/doc/src/tutorial/*
       lib-src/portaudio-v19/doc/utils/*
       lib-src/portaudio-v19/examples/CMakeLists.txt
       lib-src/portaudio-v19/fixdir.bat
       lib-src/portaudio-v19/fixfile.bat
       lib-src/portaudio-v19/libtool22.patch
       lib-src/portaudio-v19/linkage.patch
       lib-src/portaudio-v19/pablio/pablio.def
       lib-src/portaudio-v19/portaudio-2.0.pc.in
       lib-src/portaudio-v19/portaudio-srcdir.patch
       lib-src/portaudio-v19/qa/loopback/src/biquad_filter.c
       lib-src/portaudio-v19/qa/loopback/src/biquad_filter.h
       lib-src/portaudio-v19/src/SConscript
       lib-src/portaudio-v19/src/common/pa_svnrevision.h
       lib-src/portaudio-v19/src/hostapi/asio/ASIO-README.txt
       lib-src/portaudio-v19/src/hostapi/asio/Callback_adaptation_.pdf
       lib-src/portaudio-v19/src/hostapi/asio/Pa_ASIO.pdf
       lib-src/portaudio-v19/src/hostapi/asio/iasiothiscallresolver.cpp
       lib-src/portaudio-v19/src/hostapi/asio/iasiothiscallresolver.h
       lib-src/portaudio-v19/src/hostapi/coreaudio/notes.txt
       lib-src/portaudio-v19/src/hostapi/oss/low_latency_tip.txt
       lib-src/portaudio-v19/src/hostapi/oss/recplay.c
       lib-src/portaudio-v19/src/hostapi/skeleton/README.txt
       lib-src/portaudio-v19/src/hostapi/wasapi/mingw-include/*
       lib-src/portaudio-v19/src/hostapi/wasapi/readme.txt
       lib-src/portaudio-v19/src/hostapi/wdmks/readme.txt
       lib-src/portaudio-v19/test/CMakeLists.txt
       lib-src/portaudio-v19/test/README.txt
       lib-src/portaudio-v19/test/patest_suggested_vs_streaminfo_latency.py
       lib-src/portaudio-v19/testcvs/*
       lib-src/portaudio-v19/update_svnrevision.sh
       lib-src/portaudio-v19/wasapi-fix.patch
       lib-src/portaudio-v19/wasapi-loopback.patch
Copyright: Microsoft Corporation
           2002, Phil Burk, SoftSynth.com
License: Expat
Comment: No explicit license found, using license(s) from:
 lib-src/portaudio-v19/LICENSE.txt

Files: lib-src/portaudio-v19/depcomp
       lib-src/portaudio-v19/missing
Copyright: 1996-2013, Free Software Foundation, Inc
License: GPL-2+ with AutoConf exception

Files: lib-src/portaudio-v19/config.guess
       lib-src/portaudio-v19/config.sub
Copyright: 1992-2013, Free Software Foundation, Inc
License: GPL-3+ with AutoConf exception

Files: lib-src/portaudio-v19/bindings/cpp/*
Copyright: no copyright
License: Expat
Comment: No explicit license found, using license(s) from:
 lib-src/portaudio-v19/bindings/cpp/COPYING

Files: lib-src/portaudio-v19/bindings/cpp/Makefile.in
       lib-src/portaudio-v19/bindings/cpp/bin/Makefile.in
       lib-src/portaudio-v19/bindings/cpp/build/gnu/configure
       lib-src/portaudio-v19/bindings/cpp/doc/Makefile.in
       lib-src/portaudio-v19/bindings/cpp/include/Makefile.in
       lib-src/portaudio-v19/bindings/cpp/lib/Makefile.in
Copyright: 1994-2013, Free Software Foundation, Inc
License: FSF_unlimited

Files: lib-src/portaudio-v19/bindings/cpp/COPYING
Copyright: 1999-2006, Ross Bencina and Phil Burk
License: Expat

Files: lib-src/portaudio-v19/bindings/cpp/INSTALL
Copyright: 1994-2013, Free Software Foundation
License: Permissive

Files: lib-src/portaudio-v19/bindings/cpp/build/gnu/config.guess
       lib-src/portaudio-v19/bindings/cpp/build/gnu/config.sub
Copyright: no copyright
License: GPL-2+ with AutoConf exception

Files: lib-src/portaudio-v19/bindings/cpp/build/gnu/install-sh
Copyright: 1991, the Massachusetts Institute of Technology
License: MIT/X11

Files: lib-src/portaudio-v19/bindings/cpp/configure
Copyright: 1992-2012, Free Software Foundation, Inc
License: FSF_unlimited or GPL-2+ with LibTool exception

Files: lib-src/portaudio-v19/configure
Copyright: 1992-2012, Free Software Foundation, Inc
License: FSF_unlimited or GPL-2+ with LibTool exception

Files: lib-src/portaudio-v19/index.html
Copyright: 1999-2006, Ross Bencina and Phil Burk
License: MIT/X11

Files: lib-src/portaudio-v19/ltmain.sh
Copyright: no copyright
License: GPL-2+ with LibTool exception

Files: lib-src/portburn/portburn.h
       lib-src/portburn/portburn_macosx.c
       lib-src/portburn/portburn_macosx.cpp
       lib-src/portburn/portburn_staging.c
       lib-src/portburn/portburn_staging.cpp
       lib-src/portburn/portburn_staging.h
       lib-src/portburn/portburn_winxp.cpp
       lib-src/portburn/portburn_winxpv1.cpp
       lib-src/portburn/portburn_winxpv2.cpp
       lib-src/portburn/test_portburn.cpp
Copyright: no copyright
License: LGPL

Files: lib-src/portmixer/*
Copyright: 1999-2007, Ross Bencina and Phil Burk
           1994, X Consortium
License: Expat

Files: lib-src/portmixer/Makefile.in
       lib-src/portmixer/m4/*
       lib-src/portmixer/px_tests/*
       lib-src/portmixer/src/Makefile.in
Copyright: 1994-2013, Free Software Foundation, Inc
License: FSF_unlimited

Files: lib-src/portmixer/Makefile.am
       lib-src/portmixer/README.txt
       lib-src/portmixer/configure.ac
       lib-src/portmixer/px_tests/Makefile.am
       lib-src/portmixer/px_tests/px_test.c
       lib-src/portmixer/src/Makefile.am
Copyright: no copyright
License: Expat
Comment: No explicit license found, using license(s) from:
 lib-src/portmixer/LICENSE.txt

Files: lib-src/portmixer/configure
       lib-src/portmixer/m4/libtool.m4
Copyright: 1992-2012, Free Software Foundation, Inc
License: FSF_unlimited or GPL-2+ with LibTool exception

Files: lib-src/portmixer/autotools/ar-lib
       lib-src/portmixer/autotools/compile
       lib-src/portmixer/autotools/depcomp
       lib-src/portmixer/autotools/missing
Copyright: 1996-2013, Free Software Foundation, Inc
License: GPL-2+ with AutoConf exception

Files: lib-src/portmixer/autotools/config.guess
       lib-src/portmixer/autotools/config.sub
Copyright: 1992-2013, Free Software Foundation, Inc
License: GPL-3+ with AutoConf exception

Files: lib-src/portmixer/autotools/ltmain.sh
Copyright: no copyright
License: GPL-2+ with LibTool exception

Files: lib-src/soundtouch/README.html
Copyright: 2001-2012, Olli Parviainen
License: LGPL-2.1

Files: lib-src/soundtouch/source/Android-lib/jni/Android.mk
Copyright: 2010, The Android Open Source Project
License: Apache-2.0

Files: lib-src/twolame/*
Copyright: 2001-2004, Michael Cheng
           2004-2006, The TwoLAME Project
License: LGPL-2.1+
Comment: No explicit license found, using license(s) from:
 lib-src/twolame/COPYING

Files: lib-src/twolame/COPYING
       lib-src/twolame/README
       lib-src/twolame/doc/html/readme.html
       lib-src/twolame/frontend/audioin_raw.c
       lib-src/twolame/frontend/audioin_sndfile.c
       lib-src/twolame/frontend/frontend.c
       lib-src/twolame/frontend/frontend.h
       lib-src/twolame/libtwolame/ath.c
       lib-src/twolame/libtwolame/ath.h
       lib-src/twolame/libtwolame/availbits.c
       lib-src/twolame/libtwolame/availbits.h
       lib-src/twolame/libtwolame/bitbuffer.c
       lib-src/twolame/libtwolame/bitbuffer.h
       lib-src/twolame/libtwolame/bitbuffer_inline.h
       lib-src/twolame/libtwolame/common.h
       lib-src/twolame/libtwolame/crc.c
       lib-src/twolame/libtwolame/crc.h
       lib-src/twolame/libtwolame/dab.c
       lib-src/twolame/libtwolame/dab.h
       lib-src/twolame/libtwolame/encode.c
       lib-src/twolame/libtwolame/encode.h
       lib-src/twolame/libtwolame/energy.c
       lib-src/twolame/libtwolame/energy.h
       lib-src/twolame/libtwolame/enwindow.h
       lib-src/twolame/libtwolame/fft.c
       lib-src/twolame/libtwolame/fft.h
       lib-src/twolame/libtwolame/get_set.c
       lib-src/twolame/libtwolame/mem.c
       lib-src/twolame/libtwolame/mem.h
       lib-src/twolame/libtwolame/psycho_0.c
       lib-src/twolame/libtwolame/psycho_0.h
       lib-src/twolame/libtwolame/psycho_1.c
       lib-src/twolame/libtwolame/psycho_1.h
       lib-src/twolame/libtwolame/psycho_1_critband.h
       lib-src/twolame/libtwolame/psycho_1_freqtable.h
       lib-src/twolame/libtwolame/psycho_2.c
       lib-src/twolame/libtwolame/psycho_2.h
       lib-src/twolame/libtwolame/psycho_2_absthr.h
       lib-src/twolame/libtwolame/psycho_3.c
       lib-src/twolame/libtwolame/psycho_3.h
       lib-src/twolame/libtwolame/psycho_4.c
       lib-src/twolame/libtwolame/psycho_4.h
       lib-src/twolame/libtwolame/psycho_n1.c
       lib-src/twolame/libtwolame/psycho_n1.h
       lib-src/twolame/libtwolame/subband.c
       lib-src/twolame/libtwolame/subband.h
       lib-src/twolame/libtwolame/twolame.c
       lib-src/twolame/libtwolame/twolame.h
       lib-src/twolame/libtwolame/util.c
       lib-src/twolame/libtwolame/util.h
       lib-src/twolame/simplefrontend/audio_wave.c
       lib-src/twolame/simplefrontend/audio_wave.h
       lib-src/twolame/simplefrontend/simplefrontend.c
Copyright: 1991-1999, Free Software Foundation, Inc
           2001-2004, Michael Cheng
           1988-1993, Ron Mayer
           2004-2007, The TwoLAME Project
License: LGPL-2.1+

Files: lib-src/twolame/Makefile.in
       lib-src/twolame/build-scripts/*
       lib-src/twolame/doc/Makefile.in
       lib-src/twolame/doc/html/Makefile.in
       lib-src/twolame/frontend/Makefile.in
       lib-src/twolame/libtwolame/Makefile.in
       lib-src/twolame/simplefrontend/Makefile.in
       lib-src/twolame/tests/Makefile.in
Copyright: 1994-2013, Free Software Foundation, Inc
License: FSF_unlimited

Files: lib-src/twolame/build-scripts/libtool.m4
       lib-src/twolame/configure
Copyright: 1992-2012, Free Software Foundation, Inc
License: FSF_unlimited or GPL-2+ with LibTool exception

Files: lib-src/twolame/autogen.sh
Copyright: no copyright
License: public-domain

Files: lib-src/twolame/build-scripts/compile
       lib-src/twolame/build-scripts/depcomp
       lib-src/twolame/build-scripts/missing
       lib-src/twolame/build-scripts/test-driver
Copyright: 1996-2013, Free Software Foundation, Inc
License: GPL-2+ with AutoConf exception

Files: lib-src/twolame/build-scripts/config.guess
       lib-src/twolame/build-scripts/config.sub
Copyright: 1992-2013, Free Software Foundation, Inc
License: GPL-3+ with AutoConf exception

Files: lib-src/twolame/build-scripts/install-sh
Copyright: 1994, X Consortium
License: Expat

Files: lib-src/twolame/build-scripts/ltmain.sh
Copyright: no copyright
License: GPL-2+ with LibTool exception

Files: src/SseMathFuncs.h
Copyright: 2007, Julien Pommier
License: Zlib

Files:
 lib-src/libogg/doc/rfc3533.txt
Copyright:
 2003 S. Pfeiffer
License: RFC-3533

Files:
 lib-src/libogg/doc/rfc5334.txt
Copyright:
 2008 I. Goncalves
 2008 S. Pfeiffer
 2008 C. Montgomery
License: RFC-5334

License: Apache-2.0
 Licensed to the Apache Software Foundation (ASF) under one or more
 contributor license agreements.  See the NOTICE file distributed with
 this work for additional information regarding copyright ownership.
 The ASF licenses this file to You under the Apache License, Version 2.0
 (the "License"); you may not use this file except in compliance with
 the License.  You may obtain a copy of the License at
 .
      http://www.apache.org/licenses/LICENSE-2.0
 .
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 .
 On Debian systems, the full text of the Apache Software License version 2 can
 be found in the file `/usr/share/common-licenses/Apache-2.0'.

License: W3C
 This document, Test Suites and other documents that link to this statement are
 provided by the copyright holders under the following license: By using and/or
 copying this document, or the W3C document from which this statement is linked,
 you (the licensee) agree that you have read, understood, and will comply with
 the following terms and conditions:
 .
 Permission to copy, and distribute the contents of this document, or the W3C
 document from which this statement is linked, in any medium for any purpose and
 without fee or royalty is hereby granted, provided that you include the
 following on ALL copies of the document, or portions thereof, that you use:
 .
 1 A link or URL to the original W3C document.
 .
 2 The pre-existing copyright notice of the original author, or if it doesn't
 exist, a notice (hypertext is preferred, but a textual representation is
 permitted) of the form: "Copyright © [$date-of-document] World Wide Web
 Consortium, (Massachusetts Institute of Technology, European Research
 Consortium for Informatics and Mathematics, Keio University) and others. All
 Rights
 Reserved. http://www.w3.org/Consortium/Legal/2008/04-testsuite-copyright.html"
 .
 3 If it exists, the STATUS of the W3C document.
 .
 4 When space permits, inclusion of the full text of this NOTICE should be
 provided. We request that authorship attribution be provided in any software,
 documents, or other items or products that you create pursuant to the
 implementation of the contents of this document, or any portion thereof.
 .
 No right to create modifications or derivatives of W3C documents is granted
 pursuant to this license. However, if additional requirements (documented in the
 Copyright FAQ) are satisfied, the right to create modifications or derivatives
 is sometimes granted by the W3C to individuals complying with those
 requirements.
 .
 If a Test Suite distinguishes the test harness (or, framework for navigation)
 and the actual tests, permission is given to remove or alter the harness or
 navigation if the Test Suite in question allows one to do so. The tests themselves
 shall NOT be changed in any way.
 .
 The name and trademarks of W3C and other copyright holders may NOT be used in
 advertising or publicity pertaining to this document or other documents that
 link to this statement without specific, written prior permission. Title to
 copyright in this document will at all times remain with copyright
 holders. Permission is given to use the trademarked string W3C within claims of
 performance concerning W3C Specifications or features described therein, and
 there only, if the test suite so authorizes.
 .
 THIS WORK IS PROVIDED BY W3C, MIT, ERCIM, KEIO UNIVERSITY, THE COPYRIGHT HOLDERS
 AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
 NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
 PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL W3C, MIT, ERCIM, KEIO
 UNIVERSITY, THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
 OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License: BSD-2-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 .
 THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: BSD-3-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
 met:
 .
 * Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in
   the documentation and/or other materials provided with the
   distribution.
 * Neither the author nor the names of any contributors may be used
   to endorse or promote products derived from this software without
   specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License: CC-BY
 Documentation is distributed under the Creative Commons license (CC BY 3.0)
 Please see here for that:
 http://creativecommons.org/licenses/by/3.0/legalcode

License: CC-BY-3.0
 THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS
 CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS
 PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK
 OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS
 PROHIBITED.
 .
 BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND
 AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS
 LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE
 RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS
 AND CONDITIONS.
 .
 1. Definitions
 .
  a "Adaptation" means a work based upon the Work, or upon the Work and
    other pre-existing works, such as a translation, adaptation,
    derivative work, arrangement of music or other alterations of a
    literary or artistic work, or phonogram or performance and includes
    cinematographic adaptations or any other form in which the Work may
    be recast, transformed, or adapted including in any form
    recognizably derived from the original, except that a work that
    constitutes a Collection will not be considered an Adaptation for
    the purpose of this License. For the avoidance of doubt, where the
    Work is a musical work, performance or phonogram, the
    synchronization of the Work in timed-relation with a moving image
    ("synching") will be considered an Adaptation for the purpose of
    this License.
  b "Collection" means a collection of literary or artistic works, such
    as encyclopedias and anthologies, or performances, phonograms or
    broadcasts, or other works or subject matter other than works listed
    in Section 1(f) below, which, by reason of the selection and
    arrangement of their contents, constitute intellectual creations, in
    which the Work is included in its entirety in unmodified form along
    with one or more other contributions, each constituting separate and
    independent works in themselves, which together are assembled into a
    collective whole. A work that constitutes a Collection will not be
    considered an Adaptation (as defined above) for the purposes of this
    License.
  c "Distribute" means to make available to the public the original and
    copies of the Work or Adaptation, as appropriate, through sale or
    other transfer of ownership.
  d "Licensor" means the individual, individuals, entity or entities
    that offer(s) the Work under the terms of this License.
  e "Original Author" means, in the case of a literary or artistic work,
    the individual, individuals, entity or entities who created the Work
    or if no individual or entity can be identified, the publisher; and
    in addition (i) in the case of a performance the actors, singers,
    musicians, dancers, and other persons who act, sing, deliver,
    declaim, play in, interpret or otherwise perform literary or
    artistic works or expressions of folklore; (ii) in the case of a
    phonogram the producer being the person or legal entity who first
    fixes the sounds of a performance or other sounds; and, (iii) in the
    case of broadcasts, the organization that transmits the broadcast.
  f "Work" means the literary and/or artistic work offered under the
    terms of this License including without limitation any production in
    the literary, scientific and artistic domain, whatever may be the
    mode or form of its expression including digital form, such as a
    book, pamphlet and other writing; a lecture, address, sermon or
    other work of the same nature; a dramatic or dramatico-musical work;
    a choreographic work or entertainment in dumb show; a musical
    composition with or without words; a cinematographic work to which
    are assimilated works expressed by a process analogous to
    cinematography; a work of drawing, painting, architecture,
    sculpture, engraving or lithography; a photographic work to which
    are assimilated works expressed by a process analogous to
    photography; a work of applied art; an illustration, map, plan,
    sketch or three-dimensional work relative to geography, topography,
    architecture or science; a performance; a broadcast; a phonogram; a
    compilation of data to the extent it is protected as a copyrightable
    work; or a work performed by a variety or circus performer to the
    extent it is not otherwise considered a literary or artistic work.
  g "You" means an individual or entity exercising rights under this
    License who has not previously violated the terms of this License
    with respect to the Work, or who has received express permission
    from the Licensor to exercise rights under this License despite a
    previous violation.
  h "Publicly Perform" means to perform public recitations of the Work
    and to communicate to the public those public recitations, by any
    means or process, including by wire or wireless means or public
    digital performances; to make available to the public Works in such
    a way that members of the public may access these Works from a place
    and at a place individually chosen by them; to perform the Work to
    the public by any means or process and the communication to the
    public of the performances of the Work, including by public digital
    performance; to broadcast and rebroadcast the Work by any means
    including signs, sounds or images.
  i "Reproduce" means to make copies of the Work by any means including
    without limitation by sound or visual recordings and the right of
    fixation and reproducing fixations of the Work, including storage of
    a protected performance or phonogram in digital form or other
    electronic medium.
 .
 2. Fair Dealing Rights. Nothing in this License is intended to reduce,
 limit, or restrict any uses free from copyright or rights arising from
 limitations or exceptions that are provided for in connection with the
 copyright protection under copyright law or other applicable laws.
 .
 3. License Grant. Subject to the terms and conditions of this License,
 Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
 perpetual (for the duration of the applicable copyright) license to
 exercise the rights in the Work as stated below:
 .
  a to Reproduce the Work, to incorporate the Work into one or more
    Collections, and to Reproduce the Work as incorporated in the
    Collections;
  b to create and Reproduce Adaptations provided that any such
    Adaptation, including any translation in any medium, takes
    reasonable steps to clearly label, demarcate or otherwise identify
    that changes were made to the original Work. For example, a
    translation could be marked "The original work was translated from
    English to Spanish," or a modification could indicate "The original
    work has been modified.";
  c to Distribute and Publicly Perform the Work including as
    incorporated in Collections; and,
  d to Distribute and Publicly Perform Adaptations.
  f For the avoidance of doubt:
    i. Non-waivable Compulsory License Schemes. In those jurisdictions
       in which the right to collect royalties through any statutory or
       compulsory licensing scheme cannot be waived, the Licensor
       reserves the exclusive right to collect such royalties for any
       exercise by You of the rights granted under this License;
    ii. Waivable Compulsory License Schemes. In those jurisdictions in
        which the right to collect royalties through any statutory or
        compulsory licensing scheme can be waived, the Licensor waives
        the exclusive right to collect such royalties for any exercise
        by You of the rights granted under this License; and,
    iii. Voluntary License Schemes. The Licensor waives the right to
         collect royalties, whether individually or, in the event that
         the Licensor is a member of a collecting society that
         administers voluntary licensing schemes, via that society, from
         any exercise by You of the rights granted under this License.
 .
 The above rights may be exercised in all media and formats whether now
 known or hereafter devised. The above rights include the right to make
 such modifications as are technically necessary to exercise the rights
 in other media and formats. Subject to Section 8(f), all rights not
 expressly granted by Licensor are hereby reserved.
 .
 4. Restrictions. The license granted in Section 3 above is expressly
    made subject to and limited by the following restrictions:
 .
  a You may Distribute or Publicly Perform the Work only under the terms
    of this License. You must include a copy of, or the Uniform Resource
    Identifier (URI) for, this License with every copy of the Work You
    Distribute or Publicly Perform. You may not offer or impose any
    terms on the Work that restrict the terms of this License or the
    ability of the recipient of the Work to exercise the rights granted
    to that recipient under the terms of the License. You may not
    sublicense the Work. You must keep intact all notices that refer to
    this License and to the disclaimer of warranties with every copy of
    the Work You Distribute or Publicly Perform. When You Distribute or
    Publicly Perform the Work, You may not impose any effective
    technological measures on the Work that restrict the ability of a
    recipient of the Work from You to exercise the rights granted to
    that recipient under the terms of the License. This Section 4(a)
    applies to the Work as incorporated in a Collection, but this does
    not require the Collection apart from the Work itself to be made
    subject to the terms of this License. If You create a Collection,
    upon notice from any Licensor You must, to the extent practicable,
    remove from the Collection any credit as required by Section 4(b),
    as requested. If You create an Adaptation, upon notice from any
    Licensor You must, to the extent practicable, remove from the
    Adaptation any credit as required by Section 4(b), as requested.
  b If You Distribute, or Publicly Perform the Work or any Adaptations
    or Collections, You must, unless a request has been made pursuant to
    Section 4(a), keep intact all copyright notices for the Work and
    provide, reasonable to the medium or means You are utilizing: (i)
    the name of the Original Author (or pseudonym, if applicable) if
    supplied, and/or if the Original Author and/or Licensor designate
    another party or parties (e.g., a sponsor institute, publishing
    entity, journal) for attribution ("Attribution Parties") in
    Licensor's copyright notice, terms of service or by other reasonable
    means, the name of such party or parties; (ii) the title of the Work
    if supplied; (iii) to the extent reasonably practicable, the URI, if
    any, that Licensor specifies to be associated with the Work, unless
    such URI does not refer to the copyright notice or licensing
    information for the Work; and (iv) , consistent with Section 3(b),
    in the case of an Adaptation, a credit identifying the use of the
    Work in the Adaptation (e.g., "French translation of the Work by
    Original Author," or "Screenplay based on original Work by Original
    Author"). The credit required by this Section 4 (b) may be
    implemented in any reasonable manner; provided, however, that in the
    case of a Adaptation or Collection, at a minimum such credit will
    appear, if a credit for all contributing authors of the Adaptation
    or Collection appears, then as part of these credits and in a manner
    at least as prominent as the credits for the other contributing
    authors. For the avoidance of doubt, You may only use the credit
    required by this Section for the purpose of attribution in the
    manner set out above and, by exercising Your rights under this
    License, You may not implicitly or explicitly assert or imply any
    connection with, sponsorship or endorsement by the Original Author,
    Licensor and/or Attribution Parties, as appropriate, of You or Your
    use of the Work, without the separate, express prior written
    permission of the Original Author, Licensor and/or Attribution
    Parties.
  c Except as otherwise agreed in writing by the Licensor or as may be
    otherwise permitted by applicable law, if You Reproduce, Distribute
    or Publicly Perform the Work either by itself or as part of any
    Adaptations or Collections, You must not distort, mutilate, modify
    or take other derogatory action in relation to the Work which would
    be prejudicial to the Original Author's honor or reputation.
    Licensor agrees that in those jurisdictions (e.g. Japan), in which
    any exercise of the right granted in Section 3(b) of this License
    (the right to make Adaptations) would be deemed to be a distortion,
    mutilation, modification or other derogatory action prejudicial to
    the Original Author's honor and reputation, the Licensor will waive
    or not assert, as appropriate, this Section, to the fullest extent
    permitted by the applicable national law, to enable You to
    reasonably exercise Your right under Section 3(b) of this License
    (right to make Adaptations) but not otherwise.
 .
 5. Representations, Warranties and Disclaimer
 .
 UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR
 OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY
 KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,
 INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,
 FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF
 LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF
 ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW
 THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO
 YOU.
 .
 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE
 LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR
 ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES
 ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR
 HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 .
 7. Termination
 .
  a This License and the rights granted hereunder will terminate
    automatically upon any breach by You of the terms of this License.
    Individuals or entities who have received Adaptations or Collections
    from You under this License, however, will not have their licenses
    terminated provided such individuals or entities remain in full
    compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will
    survive any termination of this License.
  b Subject to the above terms and conditions, the license granted here
    is perpetual (for the duration of the applicable copyright in the
    Work). Notwithstanding the above, Licensor reserves the right to
    release the Work under different license terms or to stop
    distributing the Work at any time; provided, however that any such
    election will not serve to withdraw this License (or any other
    license that has been, or is required to be, granted under the terms
    of this License), and this License will continue in full force and
    effect unless terminated as stated above.
 .
 8. Miscellaneous
 .
  a Each time You Distribute or Publicly Perform the Work or a
    Collection, the Licensor offers to the recipient a license to the
    Work on the same terms and conditions as the license granted to You
    under this License.
  b Each time You Distribute or Publicly Perform an Adaptation, Licensor
    offers to the recipient a license to the original Work on the same
    terms and conditions as the license granted to You under this
    License.
  c If any provision of this License is invalid or unenforceable under
    applicable law, it shall not affect the validity or enforceability
    of the remainder of the terms of this License, and without further
    action by the parties to this agreement, such provision shall be
    reformed to the minimum extent necessary to make such provision
    valid and enforceable.
  d No term or provision of this License shall be deemed waived and no
    breach consented to unless such waiver or consent shall be in
    writing and signed by the party to be charged with such waiver or
    consent.
  e This License constitutes the entire agreement between the parties
    with respect to the Work licensed here. There are no understandings,
    agreements or representations with respect to the Work not specified
    here. Licensor shall not be bound by any additional provisions that
    may appear in any communication from You. This License may not be
    modified without the mutual written agreement of the Licensor and
    You.
  f The rights granted under, and the subject matter referenced, in this
    License were drafted utilizing the terminology of the Berne
    Convention for the Protection of Literary and Artistic Works (as
    amended on September 28, 1979), the Rome Convention of 1961, the
    WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms
    Treaty of 1996 and the Universal Copyright Convention (as revised on
    July 24, 1971). These rights and subject matter take effect in the
    relevant jurisdiction in which the License terms are sought to be
    enforced according to the corresponding provisions of the
    implementation of those treaty provisions in the applicable national
    law. If the standard suite of rights granted under applicable
    copyright law includes additional rights not granted under this
    License, such additional rights are deemed to be included in the
    License; this License is not intended to restrict the license of any
    rights under applicable law.

License: CC-BY-SA
 THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS
 CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS
 PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK
 OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS
 PROHIBITED.
 .
 BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND
 AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS
 LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE
 RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS
 AND CONDITIONS.
 .
 1. Definitions
 .
  a "Adaptation" means a work based upon the Work, or upon the Work and
    other pre-existing works, such as a translation, adaptation,
    derivative work, arrangement of music or other alterations of a
    literary or artistic work, or phonogram or performance and includes
    cinematographic adaptations or any other form in which the Work may
    be recast, transformed, or adapted including in any form
    recognizably derived from the original, except that a work that
    constitutes a Collection will not be considered an Adaptation for
    the purpose of this License. For the avoidance of doubt, where the
    Work is a musical work, performance or phonogram, the
    synchronization of the Work in timed-relation with a moving image
    ("synching") will be considered an Adaptation for the purpose of
    this License.
  b "Collection" means a collection of literary or artistic works, such
    as encyclopedias and anthologies, or performances, phonograms or
    broadcasts, or other works or subject matter other than works listed
    in Section 1(f) below, which, by reason of the selection and
    arrangement of their contents, constitute intellectual creations, in
    which the Work is included in its entirety in unmodified form along
    with one or more other contributions, each constituting separate and
    independent works in themselves, which together are assembled into a
    collective whole. A work that constitutes a Collection will not be
    considered an Adaptation (as defined below) for the purposes of this
    License.
  c "Creative Commons Compatible License" means a license that is listed
    at https://creativecommons.org/compatiblelicenses that has been
    approved by Creative Commons as being essentially equivalent to this
    License, including, at a minimum, because that license: (i) contains
    terms that have the same purpose, meaning and effect as the License
    Elements of this License; and, (ii) explicitly permits the
    relicensing of adaptations of works made available under that
    license under this License or a Creative Commons jurisdiction
    license with the same License Elements as this License.
  d "Distribute" means to make available to the public the original and
    copies of the Work or Adaptation, as appropriate, through sale or
    other transfer of ownership.
  e "License Elements" means the following high-level license attributes
    as selected by Licensor and indicated in the title of this License:
    Attribution, ShareAlike.
  f "Licensor" means the individual, individuals, entity or entities
    that offer(s) the Work under the terms of this License.
  g "Original Author" means, in the case of a literary or artistic work,
    the individual, individuals, entity or entities who created the Work
    or if no individual or entity can be identified, the publisher; and
    in addition (i) in the case of a performance the actors, singers,
    musicians, dancers, and other persons who act, sing, deliver,
    declaim, play in, interpret or otherwise perform literary or
    artistic works or expressions of folklore; (ii) in the case of a
    phonogram the producer being the person or legal entity who first
    fixes the sounds of a performance or other sounds; and, (iii) in the
    case of broadcasts, the organization that transmits the broadcast.
  h "Work" means the literary and/or artistic work offered under the
    terms of this License including without limitation any production in
    the literary, scientific and artistic domain, whatever may be the
    mode or form of its expression including digital form, such as a
    book, pamphlet and other writing; a lecture, address, sermon or
    other work of the same nature; a dramatic or dramatico-musical work;
    a choreographic work or entertainment in dumb show; a musical
    composition with or without words; a cinematographic work to which
    are assimilated works expressed by a process analogous to
    cinematography; a work of drawing, painting, architecture,
    sculpture, engraving or lithography; a photographic work to which
    are assimilated works expressed by a process analogous to
    photography; a work of applied art; an illustration, map, plan,
    sketch or three-dimensional work relative to geography, topography,
    architecture or science; a performance; a broadcast; a phonogram; a
    compilation of data to the extent it is protected as a copyrightable
    work; or a work performed by a variety or circus performer to the
    extent it is not otherwise considered a literary or artistic work.
  i "You" means an individual or entity exercising rights under this
    License who has not previously violated the terms of this License
    with respect to the Work, or who has received express permission
    from the Licensor to exercise rights under this License despite a
    previous violation.
  j "Publicly Perform" means to perform public recitations of the Work
    and to communicate to the public those public recitations, by any
    means or process, including by wire or wireless means or public
    digital performances; to make available to the public Works in such
    a way that members of the public may access these Works from a place
    and at a place individually chosen by them; to perform the Work to
    the public by any means or process and the communication to the
    public of the performances of the Work, including by public digital
    performance; to broadcast and rebroadcast the Work by any means
    including signs, sounds or images.
  k "Reproduce" means to make copies of the Work by any means including
    without limitation by sound or visual recordings and the right of
    fixation and reproducing fixations of the Work, including storage of
    a protected performance or phonogram in digital form or other
    electronic medium.
 .
 2. Fair Dealing Rights. Nothing in this License is intended to reduce,
 limit, or restrict any uses free from copyright or rights arising from
 limitations or exceptions that are provided for in connection with the
 copyright protection under copyright law or other applicable laws.
 .
 3. License Grant. Subject to the terms and conditions of this License,
 Licensor hereby grants You a worldwide, royalty-free, non-exclusive,
 perpetual (for the duration of the applicable copyright) license to
 exercise the rights in the Work as stated below:
 .
  a to Reproduce the Work, to incorporate the Work into one or more
    Collections, and to Reproduce the Work as incorporated in the
    Collections;
  b to create and Reproduce Adaptations provided that any such
    Adaptation, including any translation in any medium, takes
    reasonable steps to clearly label, demarcate or otherwise identify
    that changes were made to the original Work. For example, a
    translation could be marked "The original work was translated from
    English to Spanish," or a modification could indicate "The original
    work has been modified.";
  c to Distribute and Publicly Perform the Work including as
    incorporated in Collections; and,
  d to Distribute and Publicly Perform Adaptations.
  e For the avoidance of doubt:
    i. Non-waivable Compulsory License Schemes. In those jurisdictions
       in which the right to collect royalties through any statutory or
       compulsory licensing scheme cannot be waived, the Licensor
       reserves the exclusive right to collect such royalties for any
       exercise by You of the rights granted under this License;
    ii. Waivable Compulsory License Schemes. In those jurisdictions in
        which the right to collect royalties through any statutory or
        compulsory licensing scheme can be waived, the Licensor waives
        the exclusive right to collect such royalties for any exercise
        by You of the rights granted under this License; and,
    iii. Voluntary License Schemes. The Licensor waives the right to
         collect royalties, whether individually or, in the event that
         the Licensor is a member of a collecting society that
         administers voluntary licensing schemes, via that society, from
         any exercise by You of the rights granted under this License.
 .
 The above rights may be exercised in all media and formats whether now
 known or hereafter devised. The above rights include the right to make
 such modifications as are technically necessary to exercise the rights
 in other media and formats. Subject to Section 8(f), all rights not
 expressly granted by Licensor are hereby reserved.
 .
 4. Restrictions. The license granted in Section 3 above is expressly
 made subject to and limited by the following restrictions:
 .
  a You may Distribute or Publicly Perform the Work only under the terms
    of this License. You must include a copy of, or the Uniform Resource
    Identifier (URI) for, this License with every copy of the Work You
    Distribute or Publicly Perform. You may not offer or impose any
    terms on the Work that restrict the terms of this License or the
    ability of the recipient of the Work to exercise the rights granted
    to that recipient under the terms of the License. You may not
    sublicense the Work. You must keep intact all notices that refer to
    this License and to the disclaimer of warranties with every copy of
    the Work You Distribute or Publicly Perform. When You Distribute or
    Publicly Perform the Work, You may not impose any effective
    technological measures on the Work that restrict the ability of a
    recipient of the Work from You to exercise the rights granted to
    that recipient under the terms of the License. This Section 4(a)
    applies to the Work as incorporated in a Collection, but this does
    not require the Collection apart from the Work itself to be made
    subject to the terms of this License. If You create a Collection,
    upon notice from any Licensor You must, to the extent practicable,
    remove from the Collection any credit as required by Section 4(c),
    as requested. If You create an Adaptation, upon notice from any
    Licensor You must, to the extent practicable, remove from the
    Adaptation any credit as required by Section 4(c), as requested.
  b You may Distribute or Publicly Perform an Adaptation only under the
    terms of: (i) this License; (ii) a later version of this License
    with the same License Elements as this License; (iii) a Creative
    Commons jurisdiction license (either this or a later license
    version) that contains the same License Elements as this License
    (e.g., Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons
    Compatible License. If you license the Adaptation under one of the
    licenses mentioned in (iv), you must comply with the terms of that
    license. If you license the Adaptation under the terms of any of the
    licenses mentioned in (i), (ii) or (iii) (the "Applicable License"),
    you must comply with the terms of the Applicable License generally
    and the following provisions: (I) You must include a copy of, or the
    URI for, the Applicable License with every copy of each Adaptation
    You Distribute or Publicly Perform; (II) You may not offer or impose
    any terms on the Adaptation that restrict the terms of the
    Applicable License or the ability of the recipient of the Adaptation
    to exercise the rights granted to that recipient under the terms of
    the Applicable License; (III) You must keep intact all notices that
    refer to the Applicable License and to the disclaimer of warranties
    with every copy of the Work as included in the Adaptation You
    Distribute or Publicly Perform; (IV) when You Distribute or Publicly
    Perform the Adaptation, You may not impose any effective
    technological measures on the Adaptation that restrict the ability
    of a recipient of the Adaptation from You to exercise the rights
    granted to that recipient under the terms of the Applicable License.
    This Section 4(b) applies to the Adaptation as incorporated in a
    Collection, but this does not require the Collection apart from the
    Adaptation itself to be made subject to the terms of the Applicable
    License.
  c If You Distribute, or Publicly Perform the Work or any Adaptations
    or Collections, You must, unless a request has been made pursuant to
    Section 4(a), keep intact all copyright notices for the Work and
    provide, reasonable to the medium or means You are utilizing: (i)
    the name of the Original Author (or pseudonym, if applicable) if
    supplied, and/or if the Original Author and/or Licensor designate
    another party or parties (e.g., a sponsor institute, publishing
    entity, journal) for attribution ("Attribution Parties") in
    Licensor's copyright notice, terms of service or by other reasonable
    means, the name of such party or parties; (ii) the title of the Work
    if supplied; (iii) to the extent reasonably practicable, the URI, if
    any, that Licensor specifies to be associated with the Work, unless
    such URI does not refer to the copyright notice or licensing
    information for the Work; and (iv) , consistent with Ssection 3(b),
    in the case of an Adaptation, a credit identifying the use of the
    Work in the Adaptation (e.g., "French translation of the Work by
    Original Author," or "Screenplay based on original Work by Original
    Author"). The credit required by this Section 4(c) may be
    implemented in any reasonable manner; provided, however, that in the
    case of a Adaptation or Collection, at a minimum such credit will
    appear, if a credit for all contributing authors of the Adaptation
    or Collection appears, then as part of these credits and in a manner
    at least as prominent as the credits for the other contributing
    authors. For the avoidance of doubt, You may only use the credit
    required by this Section for the purpose of attribution in the
    manner set out above and, by exercising Your rights under this
    License, You may not implicitly or explicitly assert or imply any
    connection with, sponsorship or endorsement by the Original Author,
    Licensor and/or Attribution Parties, as appropriate, of You or Your
    use of the Work, without the separate, express prior written
    permission of the Original Author, Licensor and/or Attribution
    Parties.
  d Except as otherwise agreed in writing by the Licensor or as may be
    otherwise permitted by applicable law, if You Reproduce, Distribute
    or Publicly Perform the Work either by itself or as part of any
    Adaptations or Collections, You must not distort, mutilate, modify
    or take other derogatory action in relation to the Work which would
    be prejudicial to the Original Author's honor or reputation.
    Licensor agrees that in those jurisdictions (e.g. Japan), in which
    any exercise of the right granted in Section 3(b) of this License
    (the right to make Adaptations) would be deemed to be a distortion,
    mutilation, modification or other derogatory action prejudicial to
    the Original Author's honor and reputation, the Licensor will waive
    or not assert, as appropriate, this Section, to the fullest extent
    permitted by the applicable national law, to enable You to
    reasonably exercise Your right under Section 3(b) of this License
    (right to make Adaptations) but not otherwise.
 .
 5. Representations, Warranties and Disclaimer
 .
 UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR
 OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY
 KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,
 INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,
 FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF
 LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF
 ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW
 THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO
 YOU.
 .
 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE
 LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR
 ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES
 ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR
 HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 .
 7. Termination
 .
  a This License and the rights granted hereunder will terminate
    automatically upon any breach by You of the terms of this License.
    Individuals or entities who have received Adaptations or Collections
    from You under this License, however, will not have their licenses
    terminated provided such individuals or entities remain in full
    compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will
    survive any termination of this License.
  b Subject to the above terms and conditions, the license granted here
    is perpetual (for the duration of the applicable copyright in the
    Work). Notwithstanding the above, Licensor reserves the right to
    release the Work under different license terms or to stop
    distributing the Work at any time; provided, however that any such
    election will not serve to withdraw this License (or any other
    license that has been, or is required to be, granted under the terms
    of this License), and this License will continue in full force and
    effect unless terminated as stated above.
 .
 8. Miscellaneous
 .
  a Each time You Distribute or Publicly Perform the Work or a
    Collection, the Licensor offers to the recipient a license to the
    Work on the same terms and conditions as the license granted to You
    under this License.
  b Each time You Distribute or Publicly Perform an Adaptation, Licensor
    offers to the recipient a license to the original Work on the same
    terms and conditions as the license granted to You under this
    License.
  c If any provision of this License is invalid or unenforceable under
    applicable law, it shall not affect the validity or enforceability
    of the remainder of the terms of this License, and without further
    action by the parties to this agreement, such provision shall be
    reformed to the minimum extent necessary to make such provision
    valid and enforceable.
  d No term or provision of this License shall be deemed waived and no
    breach consented to unless such waiver or consent shall be in
    writing and signed by the party to be charged with such waiver or
    consent.
  e This License constitutes the entire agreement between the parties
    with respect to the Work licensed here. There are no understandings,
    agreements or representations with respect to the Work not specified
    here. Licensor shall not be bound by any additional provisions that
    may appear in any communication from You. This License may not be
    modified without the mutual written agreement of the Licensor and
    You.
  f The rights granted under, and the subject matter referenced, in this
    License were drafted utilizing the terminology of the Berne
    Convention for the Protection of Literary and Artistic Works (as
    amended on September 28, 1979), the Rome Convention of 1961, the
    WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms
    Treaty of 1996 and the Universal Copyright Convention (as revised on
    July 24, 1971). These rights and subject matter take effect in the
    relevant jurisdiction in which the License terms are sought to be
    enforced according to the corresponding provisions of the
    implementation of those treaty provisions in the applicable national
    law. If the standard suite of rights granted under applicable
    copyright law includes additional rights not granted under this
    License, such additional rights are deemed to be included in the
    License; this License is not intended to restrict the license of any
    rights under applicable law.

License: Expat
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and associated documentation files (the
 "Software"), to deal in the Software without restriction, including
 without limitation the rights to use, copy, modify, merge, publish,
 distribute, sublicense, and/or sell copies of the Software, and to
 permit persons to whom the Software is furnished to do so, subject to
 the following conditions:
 .
 The above copyright notice and this permission notice shall be included
 in all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 DEALINGS IN THE SOFTWARE.

License: FSF_unlimited
 This is free software; the Free Software Foundation
 gives unlimited permission to copy and/or distribute it,
 with or without modifications, as long as this notice is preserved.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 PARTICULAR PURPOSE.

License: GFDL-1.1
 Permission is granted to copy, distribute and/or modify
 this document under the terms of the 
 GNU Free Documentation License, Version 1.1.

License: GFDL-NIV-1.2
 Permission is granted to copy, distribute and/or modify this document
 under the terms of the GNU Free Documentation License, Version 1.2
 or any later version published by the Free Software Foundation;
 with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
 A copy of the license is included in the section entitled "GNU
 Free Documentation License".

License: GPL
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program.

License: GPL with AutoConf exception
 dnl @license GPLWithACException

License: GPL-2
 This program is free software; you can redistribute it and/or modify it
 under the terms of the GNU General Public License as published by the
 Free Software Foundation; version 2.
 .
 This program is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 General Public License for more details.
 .
 On Debian GNU systems, the complete text of the GNU General Public
 License (GPL) version 2 can be found in
 '/usr/share/common-licenses/GPL-2'.
 .
 You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.

License: GPL-2+
 This program is free software; you can redistribute it and/or modify it
 under the terms of the GNU General Public License as published by the
 Free Software Foundation; either version 2, or (at your option) any
 later version.
 .
 This program is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 General Public License for more details.
 .
 On Debian GNU systems, the complete text of the GNU General Public
 License (GPL) version 2 or later can be found in
 '/usr/share/common-licenses/GPL-2'.
 .
 You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.

License: GPL-2+ with AutoConf exception
 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License as
 published by the Free Software Foundation; either version 2 of the
 License, or (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program.
 .
 As a special exception, the respective Autoconf Macro's copyright
 owner gives unlimited permission to copy, distribute and modify the
 configure scripts that are the output of Autoconf when processing
 the Macro. You need not follow the terms of the GNU General Public
 License when using or distributing such scripts, even though
 portions of the text of the Macro appear in them. The GNU General
 Public License (GPL) does govern all other use of the material that
 constitutes the Autoconf Macro.
 .
 This special exception to the GPL applies to versions of the
 Autoconf Macro released by the Autoconf Macro Archive. When you
 make and distribute a modified version of the Autoconf Macro, you
 may extend this special exception to the GPL to apply to your
 modified version as well.

License: GPL-2+ with LibTool exception
 This is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 .
 As a special exception to the GNU General Public License,
 if you distribute this file as part of a program or library that
 is built using GNU Libtool, you may include this file under the
 same distribution terms that you use for the rest of that program.
 .
 GNU Libtool is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with GNU Libtool; see the file COPYING.  If not, a copy
 can be downloaded from http://www.gnu.org/licenses/gpl.html

License: GPL-3+ with AutoConf exception
 This file is free software; you can redistribute it and/or modify it
 under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 3 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program; if not, see <http://www.gnu.org/licenses/>.
 .
 As a special exception to the GNU General Public License, if you
 distribute this file as part of a program that contains a
 configuration script generated by Autoconf, you may include it under
 the same distribution terms that you use for the rest of that
 program.  This Exception is an additional permission under section 7
 of the GNU General Public License, version 3 ("GPLv3").

License: ISC
 Permission to use, copy, modify, and/or distribute this software for any
 purpose with or without fee is hereby granted, provided that the above
 copyright notice and this permission notice appear in all copies.
 .
 THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

License: LGPL
 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 GNU Lesser General Public License for more details.

License: LGPL-2+
 This library is free software; you can redistribute it and/or modify it
 under the terms of the GNU Library General Public License as published
 by the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 .
 This library is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Library General Public License for more details.
 .
 On Debian GNU systems, the complete text of the GNU Library General
 Public License (LGPL - later renamed GNU Lesser General Public License)
 version 2 or later can be found in '/usr/share/common-licenses/LGPL-2'.
 .
 You should have received a copy of the GNU Library General Public
 License along with this program.  If not, see
 <http://www.gnu.org/licenses/>.

License: LGPL-2.1
 This library is free software; you can redistribute it and/or modify it
 under the terms of the GNU Lesser General Public License as published
 by the Free Software Foundation; either version 2.1 of the License.
 .
 This library is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
 General Public License for more details.
 .
 On Debian GNU systems, the complete text of the GNU Lesser General
 Public License (LGPL) version 2.1 can be found in
 '/usr/share/common-licenses/LGPL-2.1'.
 .
 You should have received a copy of the GNU Lesser General Public
 License along with this program.  If not, see
 <http://www.gnu.org/licenses/>.

License: LGPL-2.1+
 This library is free software; you can redistribute it and/or modify it
 under the terms of the GNU Lesser General Public License as published
 by the Free Software Foundation; either version 2.1 of the License, or
 (at your option) any later version.
 .
 This library is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
 General Public License for more details.
 .
 On Debian GNU systems, the complete text of the GNU Lesser General
 Public License (LGPL) version 2.1 or later can be found in
 '/usr/share/common-licenses/LGPL-2.1'.
 .
 You should have received a copy of the GNU Lesser General Public
 License along with this program.  If not, see
 <http://www.gnu.org/licenses/>.

License: MIT/X11
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and associated documentation files (the "Software"),
 to deal in the Software without restriction, including without limitation
 the rights to use, copy, modify, merge, publish, distribute, sublicense,
 and/or sell copies of the Software, and to permit persons to whom the
 Software is furnished to do so, subject to the following conditions:
 .
 The above copyright notice and this permission notice (including the next
 paragraph) shall be included in all copies or substantial portions of the
 Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 DEALINGS IN THE SOFTWARE.

License: Permissive
 Copying and distribution of this file, with or without modification,
 are permitted in any medium without royalty provided the copyright
 notice and this notice are preserved.  This file is offered as-is,
 without warranty of any kind.

License: Zlib
 This software is provided 'as-is', without any express or implied
 warranty.  In no event will the authors be held liable for any damages
 arising from the use of this software.
 .
 Permission is granted to anyone to use this software for any purpose,
 including commercial applications, and to alter it and redistribute it
 freely, subject to the following restrictions:
 .
 1. The origin of this software must not be misrepresented; you must not
    claim that you wrote the original software. If you use this software
    in a product, an acknowledgment in the product documentation would be
    appreciated but is not required.
 2. Altered source versions must be plainly marked as such, and must not be
    misrepresented as being the original software.
 3. This notice may not be removed or altered from any source distribution.

License: public-domain
 This script is in the public domain

License: RFC-5334
 RFC 5334 is distributed with the following permission:
 .
 12.  Copying Conditions
 .
 The authors agree to grant third parties the irrevocable right to
 copy, use and distribute the work, with or without modification, in
 any medium, without royalty, provided that, unless separate
 permission is granted, redistributed modified works do not contain
 misleading author, version, name of work, or endorsement information.
 RFC 5334 is distributed with the following permission:

License: RFC-3533
 Received: from mail-vw0-f52.google.com ([209.85.212.52])
         by master.debian.org with esmtps (TLS1.0:RSA_ARCFOUR_SHA1:16)
         (Exim 4.72)
         (envelope-from <silviapfeiffer1@gmail.com>)
         id 1QsTXr-0004MO-Ek
         for ron@debian.org; Sun, 14 Aug 2011 05:47:35 +0000
 In-Reply-To: <20110813065417.GV2324@audi.shelbyville.oz>
 References: <20110813065417.GV2324@audi.shelbyville.oz>
 From: Silvia Pfeiffer <silviapfeiffer1@gmail.com>
 Date: Sun, 14 Aug 2011 15:47:09 +1000
 Message-ID: <CAHp8n2nmGN+G09aA118KN86NeX9yw_VJAQNFZebm74k195zz+Q@mail.gmail.com>
 Subject: Re: Distributing the libogg RFCs in the Debian package
 To: Ron <ron@debian.org>
 Cc: Christopher Montgomery <monty@xiph.org>,
         Ivo Emanuel Goncalves <justivo@gmail.com>
 .
 Hi Ron,
 .
 I am happy to have the RFCs that I authored or co-authored to be
 published with the additional license as stated below and permit those
 RFCs to be distributed under the same terms as libogg itself.
 .
 Cheers,
 Silvia.
 .
 >  The author(s) agree to grant third parties the irrevocable
 >  right to copy, use and distribute the work, with or without
 >  modification, in any medium, without royalty, provided that,
 >  unless separate permission is granted, redistributed modified
 >  works do not contain misleading author, version, name of work,
 >  or endorsement information.