summaryrefslogtreecommitdiffstats
path: root/.gimp-2.8/pluginrc
blob: e6c736dc09b8c5204fcc438956cfcd0cad9ec106 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
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
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
# GIMP pluginrc
# 
# This file can safely be removed and will be automatically regenerated by
# querying the installed plugins.

(protocol-version 20)

(plug-in-def "/usr/lib/gimp/2.0/plug-ins/value-invert" 1413468141
    (proc-def "plug-in-vinvert" 1
         "Invert the brightness of each pixel"
         "This function takes an indexed/RGB image and inverts its 'value' in HSV space.  The upshot of this is that the color and saturation at any given point remains the same, but its brightness is effectively inverted.  Quite strange.  Sometimes produces unpleasant color artifacts on images from lossy sources (ie. JPEG)."
         "Adam D. Moss (adam@foxbox.org), Mukund Sivaraman <muks@mukund.org>"
         "Adam D. Moss (adam@foxbox.org), Mukund Sivaraman <muks@mukund.org>"
         "27th March 1997, 12th June 2006"
         "_Value Invert"
         1
        (menu-path "<Image>/Colors/Invert")
        (icon stock-id -1 "")
         "RGB*, INDEXED*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (used for indexed images)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/fractal-trace" 1413468137
    (proc-def "plug-in-fractal-trace" 1
         "Transform image with the Mandelbrot Fractal"
         "transform image with the Mandelbrot Fractal"
         "Hirotsuna Mizuno <s1041150@u-aizu.ac.jp>"
         "Copyright (C) 1997 Hirotsuna Mizuno"
         "v0.4 test version (Dec. 25 1997)"
         "_Fractal Trace..."
         1
        (menu-path "<Image>/Filters/Map")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         9 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "xmin" "xmin fractal image delimiter")
        (proc-arg 3 "xmax" "xmax fractal image delimiter")
        (proc-arg 3 "ymin" "ymin fractal image delimiter")
        (proc-arg 3 "ymax" "ymax fractal image delimiter")
        (proc-arg 0 "depth" "Trace depth")
        (proc-arg 0 "outside-type" "Outside type { WRAP (0), TRANS (1), BLACK (2), WHITE (3) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/polar-coords" 1413468135
    (proc-def "plug-in-polar-coords" 1
         "Convert image to or from polar coordinates"
         "Remaps and image from rectangular coordinates to polar coordinates or vice versa"
         "Daniel Dunbar and Federico Mena Quintero"
         "Daniel Dunbar and Federico Mena Quintero"
         "July 1997, 0.5"
         "P_olar Coordinates..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         8 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "circle" "Circle depth in %")
        (proc-arg 3 "angle" "Offset angle")
        (proc-arg 0 "backwards" "Map backwards { TRUE, FALSE }")
        (proc-arg 0 "inverse" "Map from top { TRUE, FALSE }")
        (proc-arg 0 "polrec" "Polar to rectangular { TRUE, FALSE }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-svg" 1413468139
    (proc-def "file-svg-load" 1
         "Loads files in the SVG file format"
         "Renders SVG files to raster graphics using librsvg."
         "Dom Lachowicz, Sven Neumann"
         "Dom Lachowicz <cinamod@hotmail.com>"
         "2.5.0"
         "SVG image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "svg")
            (magic "0,string,<?xml,0,string,<svg")
            (mime-type "image/svg+xml")
            (thumb-loader "file-svg-load-thumb"))
         ""
         7 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 3 "resolution" "Resolution to use for rendering the SVG (defaults to 90 dpi)")
        (proc-arg 0 "width" "Width (in pixels) to load the SVG in. (0 for original width, a negative width to specify a maximum width)")
        (proc-arg 0 "height" "Height (in pixels) to load the SVG in. (0 for original height, a negative width to specify a maximum height)")
        (proc-arg 0 "paths" "Whether to not import paths (0), import paths individually (1) or merge all imported paths (2)")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-svg-load-thumb" 1
         "Generates a thumbnail of an SVG image"
         "Renders a thumbnail of an SVG file using librsvg."
         "Dom Lachowicz, Sven Neumann"
         "Dom Lachowicz <cinamod@hotmail.com>"
         "2.5.0"
         ""
         0
        (icon stock-id -1 "")
         ""
         2 3
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Thumbnail image")
        (proc-arg 0 "image-width" "Width of full-sized image")
        (proc-arg 0 "image-height" "Height of full-sized image")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/colormap-remap" 1413468137
    (proc-def "plug-in-colormap-remap" 1
         "Rearrange the colormap"
         "This procedure takes an indexed image and lets you alter the positions of colors in the colormap without visually changing the image."
         "Mukund Sivaraman <muks@mukund.org>"
         "Mukund Sivaraman <muks@mukund.org>"
         "June 2006"
         "R_earrange Colormap..."
         2
        (menu-path "<Image>/Colors/Map/Colormap")
        (menu-path "<Colormap>")
        (icon stock-id -1 "gimp-colormap")
         "INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "num-colors" "Length of 'map' argument (should be equal to colormap size)")
        (proc-arg 7 "map" "Remap array for the colormap"))
    (proc-def "plug-in-colormap-swap" 1
         "Swap two colors in the colormap"
         "This procedure takes an indexed image and lets you swap the positions of two colors in the colormap without visually changing the image."
         "Mukund Sivaraman <muks@mukund.org>"
         "Mukund Sivaraman <muks@mukund.org>"
         "June 2006"
         "_Swap Colors"
         0
        (icon stock-id -1 "")
         "INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 2 "index1" "First index in the colormap")
        (proc-arg 2 "index2" "Second (other) index in the colormap")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/lens-distortion" 1413468140
    (proc-def "plug-in-lens-distortion" 1
         "Corrects lens distortion"
         "Corrects barrel or pincushion lens distortion."
         "David Hodson, Aurimas Juška"
         "David Hodson"
         "Version 1.0.10"
         "Lens Distortion..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         9 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "offset-x" "Effect centre offset in X")
        (proc-arg 3 "offset-y" "Effect centre offset in Y")
        (proc-arg 3 "main-adjust" "Amount of second-order distortion")
        (proc-arg 3 "edge-adjust" "Amount of fourth-order distortion")
        (proc-arg 3 "rescale" "Rescale overall image size")
        (proc-arg 3 "brighten" "Adjust brightness in corners")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/color-enhance" 1413468138
    (proc-def "plug-in-color-enhance" 1
         "Stretch color saturation to cover maximum possible range"
         "This simple plug-in does an automatic saturation stretch.  For each channel in the image, it finds the minimum and maximum values... it uses those values to stretch the individual histograms to the full range.  For some images it may do just what you want; for others it may not work that well.  This version differs from Contrast Autostretch in that it works in HSV space, and preserves hue."
         "Martin Weber"
         "Martin Weber"
         "1997"
         "_Color Enhance"
         1
        (menu-path "<Image>/Colors/Auto")
        (icon stock-id -1 "")
         "RGB*, INDEXED*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/plugin-browser" 1413468137
    (proc-def "plug-in-plug-in-details" 1
         "Display information about plug-ins"
         "Allows to browse the plug-in menus system. You can search for plug-in names, sort by name or menu location and you can view a tree representation of the plug-in menus. Can also be of help to find where new plug-ins have installed themselves in the menus."
         "Andy Thomas"
         "Andy Thomas"
         "1999"
         "_Plug-In Browser"
         1
        (menu-path "<Image>/Help/Programming")
        (icon stock-id -1 "gimp-plugin")
         ""
         1 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/cml-explorer" 1413468138
    (proc-def "plug-in-cml-explorer" 1
         "Create abstract Coupled-Map Lattice patterns"
         "Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula Automata on continuous (value) domain. In GIMP_RUN_NONINTERACTIVE, the name of a prameter file is passed as the 4th arg. You can control CML_explorer via parameter file."
         "Shuji Narazaki (narazaki@InetQ.or.jp); http://www.inetq.or.jp/~narazaki/TheGIMP/"
         "Shuji Narazaki"
         "1997"
         "CML _Explorer..."
         1
        (menu-path "<Image>/Filters/Render/Pattern")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         4 0
        (proc-arg 0 "ru--mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (not used)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "parameter-filename" "The name of parameter file. CML_explorer makes an image with its settings.")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/animation-optimize" 1413468134
    (proc-def "plug-in-animationoptimize" 1
         "Modify image to reduce size when saved as GIF animation"
         "This procedure applies various optimizations to a GIMP layer-based animation in an attempt to reduce the final file size.  If a frame of the animation can use the 'combine' mode, this procedure attempts to maximize the number of ajdacent pixels having the same color, which improves the compression for some image formats such as GIF or MNG."
         "Adam D. Moss <adam@gimp.org>"
         "Adam D. Moss <adam@gimp.org>"
         "1997-2003"
         "Optimize (for _GIF)"
         1
        (menu-path "<Image>/Filters/Animation")
        (icon stock-id -1 "")
         "RGB*, INDEXED*, GRAY*"
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)")
        (proc-arg 13 "result" "Resulting image"))
    (proc-def "plug-in-animationoptimize-diff" 1
         "Reduce file size where combining layers is possible"
         "This procedure applies various optimizations to a GIMP layer-based animation in an attempt to reduce the final file size.  If a frame of the animation can use the 'combine' mode, this procedure uses a simple difference between the frames."
         "Adam D. Moss <adam@gimp.org>"
         "Adam D. Moss <adam@gimp.org>"
         "1997-2001"
         "_Optimize (Difference)"
         1
        (menu-path "<Image>/Filters/Animation")
        (icon stock-id -1 "")
         "RGB*, INDEXED*, GRAY*"
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)")
        (proc-arg 13 "result" "Resulting image"))
    (proc-def "plug-in-animationunoptimize" 1
         "Remove optimization to make editing easier"
         "This procedure 'simplifies' a GIMP layer-based animation that has been optimized for animation. This makes editing the animation much easier."
         "Adam D. Moss <adam@gimp.org>"
         "Adam D. Moss <adam@gimp.org>"
         "1997-2001"
         "_Unoptimize"
         1
        (menu-path "<Image>/Filters/Animation")
        (icon stock-id -1 "")
         "RGB*, INDEXED*, GRAY*"
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)")
        (proc-arg 13 "result" "Resulting image")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-csource" 1413468138
    (proc-def "file-csource-save" 1
         "Dump image data in RGB(A) format for C source"
         "CSource cannot be run non-interactively."
         "Tim Janik"
         "Tim Janik"
         "1999"
         "C source code"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "c")
            (mime-type "text/x-csrc"))
         "RGB*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/filter-pack" 1413468137
    (proc-def "plug-in-filter-pack" 1
         "Interactively modify the image colors"
         "Interactively modify the image colors."
         "Pavel Grinfeld (pavel@ml.com)"
         "Pavel Grinfeld (pavel@ml.com)"
         "27th March 1997"
         "_Filter Pack..."
         1
        (menu-path "<Image>/Colors/Modify")
        (icon stock-id -1 "")
         "RGB*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (used for indexed images)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-xpm" 1413468139
    (proc-def "file-xpm-load" 1
         "Load files in XPM (X11 Pixmap) format."
         "Load files in XPM (X11 Pixmap) format. XPM is a portable image format designed to be included in C source code. XLib provides utility functions to read this format. Newer code should however be using gdk-pixbuf-csource instead. XPM supports colored images, unlike the XBM format which XPM was designed to replace."
         "Spencer Kimball & Peter Mattis & Ray Lehtiniemi"
         "Spencer Kimball & Peter Mattis"
         "1997"
         "X PixMap image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "xpm")
            (magic "0, string,/*\\040XPM\\040*/")
            (mime-type "image/x-xpixmap"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-xpm-save" 1
         "Save files in XPM (X11 Pixmap) format."
         "Save files in XPM (X11 Pixmap) format. XPM is a portable image format designed to be included in C source code. XLib provides utility functions to read this format. Newer code should however be using gdk-pixbuf-csource instead. XPM supports colored images, unlike the XBM format which XPM was designed to replace."
         "Spencer Kimball & Peter Mattis & Ray Lehtiniemi & Nathan Summers"
         "Spencer Kimball & Peter Mattis"
         "1997"
         "X PixMap image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "xpm")
            (mime-type "image/x-xpixmap"))
         "RGB*, GRAY*, INDEXED*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "threshold" "Alpha threshold (0-255)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-sunras" 1413468139
    (proc-def "file-sunras-load" 1
         "load file of the SunRaster file format"
         "load file of the SunRaster file format"
         "Peter Kirchgessner"
         "Peter Kirchgessner"
         "1996"
         "SUN Rasterfile image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "im1,im8,im24,im32,rs,ras")
            (magic "0,long,0x59a66a95")
            (mime-type "image/x-sun-raster"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-sunras-save" 1
         "save file in the SunRaster file format"
         "SUNRAS saving handles all image types except those with alpha channels."
         "Peter Kirchgessner"
         "Peter Kirchgessner"
         "1996"
         "SUN Rasterfile image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "im1,im8,im24,im32,rs,ras")
            (mime-type "image/x-sun-raster"))
         "RGB, GRAY, INDEXED"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "rle" "Specify non-zero for rle output, zero for standard output")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/curve-bend" 1413468138
    (proc-def "plug-in-curve-bend" 1
         "Bend the image using two control curves"
         "This plug-in does bend the active layer If there is a current selection it is copied to floating selection and the curve_bend distortion is done on the floating selection. If work_on_copy parameter is TRUE, the curve_bend distortion is done on a copy of the active layer (or floating selection). The upper and lower edges are bent in shape of 2 spline curves. both (upper and lower) curves are determined by upto 17 points or by 256 Y-Values if curve_type == 1 (freehand mode) If rotation is not 0, the layer is rotated before and rotated back after the bend operation. This enables bending in other directions than vertical. bending usually changes the size of the handled layer. this plugin sets the offsets of the handled layer to keep its center at the same position"
         "Wolfgang Hofer (hof@hotbot.com)"
         "Wolfgang Hofer"
         "v1.3.18 (2003/08/26)"
         "_Curve Bend..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         20 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (must be a layer without layermask)")
        (proc-arg 3 "rotation" "Direction {angle 0 to 360 degree } of the bend effect")
        (proc-arg 0 "smoothing" "Smoothing { TRUE, FALSE }")
        (proc-arg 0 "antialias" "Antialias { TRUE, FALSE }")
        (proc-arg 0 "work-on-copy" "{ TRUE, FALSE } TRUE: copy the drawable and bend the copy")
        (proc-arg 0 "curve-type" " { 0, 1 } 0 == smooth (use 17 points), 1 == freehand (use 256 val_y) ")
        (proc-arg 0 "argc-upper-point-x" "{2 <= argc <= 17} ")
        (proc-arg 8 "upper-point-x" "array of 17 x point_koords { 0.0 <= x <= 1.0 or -1 for unused point }")
        (proc-arg 0 "argc-upper-point-y" "{2 <= argc <= 17} ")
        (proc-arg 8 "upper-point-y" "array of 17 y point_koords { 0.0 <= y <= 1.0 or -1 for unused point }")
        (proc-arg 0 "argc-lower-point-x" "{2 <= argc <= 17} ")
        (proc-arg 8 "lower-point-x" "array of 17 x point_koords { 0.0 <= x <= 1.0 or -1 for unused point }")
        (proc-arg 0 "argc-lower-point-y" "{2 <= argc <= 17} ")
        (proc-arg 8 "lower-point-y" "array of 17 y point_koords { 0.0 <= y <= 1.0 or -1 for unused point }")
        (proc-arg 0 "argc-upper-val-y" "{ 256 } ")
        (proc-arg 7 "upper-val-y" "array of 256 y freehand koord { 0 <= y <= 255 }")
        (proc-arg 0 "argc-lower-val-y" "{ 256 } ")
        (proc-arg 7 "lower-val-y" "array of 256 y freehand koord { 0 <= y <= 255 }")
        (proc-arg 14 "bent-layer" "the handled layer"))
    (proc-def "plug_in_curve_bend_Iterator" 1
         "This procedure calculates the modified values for one iterationstep for the call of plug_in_curve_bend"
         ""
         "Wolfgang Hofer (hof@hotbot.com)"
         "Wolfgang Hofer"
         "v1.3.18 (2003/08/26)"
         ""
         0
        (icon stock-id -1 "")
         ""
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }")
        (proc-arg 0 "total-steps" "total number of steps (# of layers-1 to apply the related plug-in)")
        (proc-arg 3 "current-step" "current (for linear iterations this is the layerstack position, otherwise some value inbetween)")
        (proc-arg 0 "len-struct" "length of stored data structure with id is equal to the plug_in  proc_name")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/semi-flatten" 1413468133
    (proc-def "plug-in-semiflatten" 1
         "Replace partial transparency with the current background color"
         "This plugin flattens pixels in an RGBA image that aren't completely transparent against the current GIMP background color"
         "Adam D. Moss (adam@foxbox.org)"
         "Adam D. Moss (adam@foxbox.org)"
         "27th January 1998"
         "_Semi-Flatten"
         2
        (menu-path "<Image>/Filters/Web")
        (menu-path "<Image>/Layer/Transparency/Modify")
        (icon stock-id -1 "")
         "RGBA"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-tga" 1413468141
    (proc-def "file-tga-load" 1
         "Loads files of Targa file format"
         "FIXME: write help for tga_load"
         "Raphael FRANCOIS, Gordon Matzigkeit"
         "Raphael FRANCOIS, Gordon Matzigkeit"
         "1997,2000,2007"
         "TarGA image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "tga,vda,icb,vst")
            (magic "-18&,string,TRUEVISION-XFILE.,-1,byte,0")
            (mime-type "image/x-tga"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-tga-save" 1
         "saves files in the Targa file format"
         "FIXME: write help for tga_save"
         "Raphael FRANCOIS, Gordon Matzigkeit"
         "Raphael FRANCOIS, Gordon Matzigkeit"
         "1997,2000"
         "TarGA image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "tga")
            (mime-type "image/x-tga"))
         "RGB*, GRAY*, INDEXED*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "rle" "Use RLE compression")
        (proc-arg 0 "origin" "Image origin (0 = top-left, 1 = bottom-left)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/sparkle" 1413468140
    (proc-def "plug-in-sparkle" 1
         "Turn bright spots into starry sparkles"
         "Uses a percentage based luminoisty threhsold to find candidate pixels for adding some sparkles (spikes). "
         "John Beale, & (ported to GIMP v0.54) Michael J. Hammel & ted to GIMP v1.0) & Seth Burgess & Spencer Kimball"
         "John Beale"
         "Version 1.27, September 2003"
         "_Sparkle..."
         1
        (menu-path "<Image>/Filters/Light and Shadow/Light")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         16 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "lum-threshold" "Luminosity threshold (0.0 - 1.0)")
        (proc-arg 3 "flare-inten" "Flare intensity (0.0 - 1.0)")
        (proc-arg 0 "spike-len" "Spike length (in pixels)")
        (proc-arg 0 "spike-pts" "# of spike points")
        (proc-arg 0 "spike-angle" "Spike angle (0-360 degrees, -1: random)")
        (proc-arg 3 "density" "Spike density (0.0 - 1.0)")
        (proc-arg 3 "transparency" "Transparency (0.0 - 1.0)")
        (proc-arg 3 "random-hue" "Random hue (0.0 - 1.0)")
        (proc-arg 3 "random-saturation" "Random saturation (0.0 - 1.0)")
        (proc-arg 0 "preserve-luminosity" "Preserve luminosity (TRUE/FALSE)")
        (proc-arg 0 "inverse" "Inverse (TRUE/FALSE)")
        (proc-arg 0 "border" "Add border (TRUE/FALSE)")
        (proc-arg 0 "color-type" "Color of sparkles: { NATURAL (0), FOREGROUND (1), BACKGROUND (2) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/text-brush.py" 1413468057
    (proc-def "python-fu-brush-from-text" 1
         "Create a new brush with characters from a text sequence"
         "New dynamic brush where each cell is a character from \nthe input text in the chosen font "
         "Joao S. O. Bueno"
         "Copyright Joao S.O. Bueno 2009. GPL v3.0"
         "2009"
         "New Brush from _Text..."
         1
        (menu-path "<Image>/File/Create")
        (icon stock-id -1 "")
         ""
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "font" "Font")
        (proc-arg 0 "size" "Pixel Size")
        (proc-arg 4 "text" "Text"))
    (locale-def "gimp20-python" "/usr/share/locale"))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/py-slice.py" 1413468057
    (proc-def "python-fu-slice" 1
         "Cuts an image along its guides, creates images and a HTML table snippet"
         "Add guides to an image. Then run this. It will cut along the guides,\n    and give you the html to reassemble the resulting images. If you\n    choose to generate javascript for onmouseover and clicked events, it\n    will use the lower three visible layers on the image for normal,\n    onmouseover and clicked states, in that order. If skip caps is\n    enabled, table cells on the edge of the table won't become animated,\n    and its images will be taken from the active layer."
         "Manish Singh"
         "Manish Singh"
         "2003"
         "_Slice..."
         1
        (menu-path "<Image>/Filters/Web")
        (icon stock-id -1 "")
         "*"
         12 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "save-path" "Path for HTML export")
        (proc-arg 4 "html-filename" "Filename for export")
        (proc-arg 4 "image-basename" "Image name prefix")
        (proc-arg 4 "image-extension" "Image format")
        (proc-arg 0 "separate-image-dir" "Separate image folder")
        (proc-arg 4 "relative-image-path" "Folder for image export")
        (proc-arg 0 "cellspacing" "Space between table elements")
        (proc-arg 0 "animate" "Javascript for onmouseover and clicked")
        (proc-arg 0 "skip-caps" "Skip animation for table caps"))
    (locale-def "gimp20-python" "/usr/share/locale"))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/softglow" 1413468136
    (proc-def "plug-in-softglow" 1
         "Simulate glow by making highlights intense and fuzzy"
         "Gives an image a softglow effect by intensifying the highlights in the image. This is done by screening a modified version of the drawable with itself. The modified version is desaturated and then a sigmoidal transfer function is applied to force the distribution of intensities into very small and very large only. This desaturated version is then blurred to give it a fuzzy 'vaseline-on-the-lens' effect. The glow radius parameter controls the sharpness of the glow effect. The brightness parameter controls the degree of intensification applied to image highlights. The sharpness parameter controls how defined or alternatively, diffuse, the glow effect should be."
         "Spencer Kimball"
         "Bit Specialists, Inc."
         "2001"
         "_Softglow..."
         1
        (menu-path "<Image>/Filters/Artistic")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "glow-radius" "Glow radius (radius in pixels)")
        (proc-arg 3 "brightness" "Glow brightness (0.0 - 1.0)")
        (proc-arg 3 "sharpness" "Glow sharpness (0.0 - 1.0)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/warp" 1413468133
    (proc-def "plug-in-warp" 1
         "Twist or smear image in many different ways"
         "Smears an image along vector paths calculated as the gradient of a separate control matrix. The effect can look like brushstrokes of acrylic or watercolor paint, in some cases."
         "John P. Beale"
         "John P. Beale"
         "1997"
         "_Warp..."
         1
        (menu-path "<Image>/Filters/Map")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         17 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "amount" "Pixel displacement multiplier")
        (proc-arg 16 "warp-map" "Displacement control map")
        (proc-arg 0 "iter" "Iteration count (last required argument)")
        (proc-arg 3 "dither" "Random dither amount (first optional argument)")
        (proc-arg 3 "angle" "Angle of gradient vector rotation")
        (proc-arg 0 "wrap-type" "Edge behavior: { WRAP (0), SMEAR (1), BLACK (2), COLOR (3) }")
        (proc-arg 16 "mag-map" "Magnitude control map")
        (proc-arg 0 "mag-use" "Use magnitude map: { FALSE (0), TRUE (1) }")
        (proc-arg 0 "substeps" "Substeps between image updates")
        (proc-arg 0 "grad-map" "Gradient control map")
        (proc-arg 3 "grad-scale" "Scaling factor for gradient map (0=don't use)")
        (proc-arg 0 "vector-map" "Fixed vector control map")
        (proc-arg 3 "vector-scale" "Scaling factor for fixed vector map (0=don't use)")
        (proc-arg 3 "vector-angle" "Angle for fixed vector map")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/bump-map" 1413468132
    (proc-def "plug-in-bump-map" 1
         "Create an embossing effect using a bump map"
         "This plug-in uses the algorithm described by John Schlag, \"Fast Embossing Effects on Raster Image Data\" in Graphics GEMS IV (ISBN 0-12-336155-9). It takes a drawable to be applied as a bump map to another image and produces a nice embossing effect."
         "Federico Mena Quintero, Jens Lautenbacher & Sven Neumann"
         "Federico Mena Quintero, Jens Lautenbacher & Sven Neumann"
         "April 2000, 3.0-pre1-ac2"
         "_Bump Map..."
         1
        (menu-path "<Image>/Filters/Map")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         14 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 16 "bumpmap" "Bump map drawable")
        (proc-arg 3 "azimuth" "Azimuth")
        (proc-arg 3 "elevation" "Elevation")
        (proc-arg 0 "depth" "Depth")
        (proc-arg 0 "xofs" "X offset")
        (proc-arg 0 "yofs" "Y offset")
        (proc-arg 0 "waterlevel" "Level that full transparency should represent")
        (proc-arg 0 "ambient" "Ambient lighting factor")
        (proc-arg 0 "compensate" "Compensate for darkening { TRUE, FALSE }")
        (proc-arg 0 "invert" "Invert bumpmap { TRUE, FALSE }")
        (proc-arg 0 "type" "Type of map { LINEAR (0), SPHERICAL (1), SINUSOIDAL (2) }"))
    (proc-def "plug-in-bump-map-tiled" 1
         "Create an embossing effect using a tiled image as a bump map"
         "This plug-in uses the algorithm described by John Schlag, \"Fast Embossing Effects on Raster Image Data\" in Graphics GEMS IV (ISBN 0-12-336155-9). It takes a drawable to be tiled and applied as a bump map to another image and produces a nice embossing effect."
         "Federico Mena Quintero, Jens Lautenbacher & Sven Neumann"
         "Federico Mena Quintero, Jens Lautenbacher & Sven Neumann"
         "April 2000, 3.0-pre1-ac2"
         ""
         0
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         14 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 16 "bumpmap" "Bump map drawable")
        (proc-arg 3 "azimuth" "Azimuth")
        (proc-arg 3 "elevation" "Elevation")
        (proc-arg 0 "depth" "Depth")
        (proc-arg 0 "xofs" "X offset")
        (proc-arg 0 "yofs" "Y offset")
        (proc-arg 0 "waterlevel" "Level that full transparency should represent")
        (proc-arg 0 "ambient" "Ambient lighting factor")
        (proc-arg 0 "compensate" "Compensate for darkening { TRUE, FALSE }")
        (proc-arg 0 "invert" "Invert bumpmap { TRUE, FALSE }")
        (proc-arg 0 "type" "Type of map { LINEAR (0), SPHERICAL (1), SINUSOIDAL (2) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-compressor" 1413468136
    (proc-def "file-gz-load" 1
         "loads files compressed with gzip"
         "This procedure loads files in the gzip compressed format."
         "Daniel Risacher"
         "Daniel Risacher, Spencer Kimball and Peter Mattis"
         "1995-1997"
         "gzip archive"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "xcf.gz,xcfgz")
            (magic "0,string,\037‹")
            (mime-type "application/x-gzip"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-gz-save" 1
         "saves files compressed with gzip"
         "This procedure saves files in the gzip compressed format."
         "Daniel Risacher"
         "Daniel Risacher, Spencer Kimball and Peter Mattis"
         "1995-1997"
         "gzip archive"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "xcf.gz,xcfgz")
            (mime-type "application/x-gzip"))
         "RGB*, GRAY*, INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered"))
    (proc-def "file-bz2-load" 1
         "loads files compressed with bzip2"
         "This procedure loads files in the bzip2 compressed format."
         "Daniel Risacher"
         "Daniel Risacher, Spencer Kimball and Peter Mattis"
         "1995-1997"
         "bzip archive"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "xcf.bz2,xcfbz2")
            (magic "0,string,BZh")
            (mime-type "application/x-bzip"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-bz2-save" 1
         "saves files compressed with bzip2"
         "This procedure saves files in the bzip2 compressed format."
         "Daniel Risacher"
         "Daniel Risacher, Spencer Kimball and Peter Mattis"
         "1995-1997"
         "bzip archive"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "xcf.bz2,xcfbz2")
            (mime-type "application/x-bzip"))
         "RGB*, GRAY*, INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/depth-merge" 1413468133
    (proc-def "plug-in-depth-merge" 1
         "Combine two images using depth maps (z-buffers)"
         "Taking as input two full-color, full-alpha images and two corresponding grayscale depth maps, this plug-in combines the images based on which is closer (has a lower depth map value) at each point."
         "Sean Cier"
         "Sean Cier"
         "August 1998"
         "_Depth Merge..."
         1
        (menu-path "<Image>/Filters/Combine")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         11 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "result" "Result")
        (proc-arg 16 "source1" "Source 1")
        (proc-arg 16 "source2" "Source 2")
        (proc-arg 16 "depthMap1" "Depth map 1")
        (proc-arg 16 "depthMap2" "Depth map 2")
        (proc-arg 3 "overlap" "Overlap")
        (proc-arg 3 "offset" "Depth relative offset")
        (proc-arg 3 "scale1" "Depth relative scale 1")
        (proc-arg 3 "scale2" "Depth relative scale 2")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/qbist" 1413468138
    (proc-def "plug-in-qbist" 1
         "Generate a huge variety of abstract patterns"
         "This Plug-in is based on an article by Jörn Loviscach (appeared in c't 10/95, page 326). It generates modern art pictures from a random genetic formula."
         "Jörn Loviscach, Jens Ch. Restemeier"
         "Jörn Loviscach, Jens Ch. Restemeier"
         "January 2001, 1.12"
         "_Qbist..."
         1
        (menu-path "<Image>/Filters/Render/Pattern")
        (icon stock-id -1 "")
         "RGB*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-tiff-load" 1413468138
    (proc-def "file-tiff-load" 1
         "loads files of the tiff file format"
         "FIXME: write help for tiff_load"
         "Spencer Kimball, Peter Mattis & Nick Lamb"
         "Nick Lamb <njl195@zepler.org.uk>"
         "1995-1996,1998-2003"
         "TIFF image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "tif,tiff")
            (magic "0,string,II*\\0,0,string,MM\\0*")
            (mime-type "image/tiff"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/palette-to-gradient.py" 1413468057
    (proc-def "python-fu-palette-to-gradient" 1
         "Create a gradient using colors from the palette"
         "Create a new gradient using colors from the palette."
         "Carol Spears, reproduced from previous work by Adrian Likins and Jeff Trefftz"
         "Carol Spears"
         "2006"
         "Palette to _Gradient"
         1
        (menu-path "<Palettes>")
        (icon stock-id -1 "")
         ""
         2 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "palette" "Palette")
        (proc-arg 4 "new-gradient" "Result"))
    (proc-def "python-fu-palette-to-gradient-repeating" 1
         "Create a repeating gradient using colors from the palette"
         "Create a new repeating gradient using colors from the palette."
         "Carol Spears, reproduced from previous work by Adrian Likins and Jeff Trefftz"
         "Carol Spears"
         "2006"
         "Palette to _Repeating Gradient"
         1
        (menu-path "<Palettes>")
        (icon stock-id -1 "")
         ""
         2 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "palette" "Palette")
        (proc-arg 4 "new-gradient" "Result"))
    (locale-def "gimp20-python" "/usr/share/locale"))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-header" 1413468140
    (proc-def "file-header-save" 1
         "saves files as C unsigned character array"
         "FIXME: write help"
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1997"
         "C source code header"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "h")
            (mime-type "text/x-chdr"))
         "INDEXED, RGB"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-xwd" 1413468140
    (proc-def "file-xwd-load" 1
         "Loads files in the XWD (X Window Dump) format"
         "Loads files in the XWD (X Window Dump) format. XWD image files are produced by the program xwd. Xwd is an X Window System window dumping utility."
         "Peter Kirchgessner"
         "Peter Kirchgessner"
         "1996"
         "X window dump"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "xwd")
            (magic "4,long,0x00000007")
            (mime-type "image/x-xwindowdump"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-xwd-save" 1
         "Saves files in the XWD (X Window Dump) format"
         "XWD saving handles all image types except those with alpha channels."
         "Peter Kirchgessner"
         "Peter Kirchgessner"
         "1996"
         "X window dump"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "xwd")
            (mime-type "image/x-xwindowdump"))
         "RGB, GRAY, INDEXED"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-html-table" 1413468139
    (proc-def "file-gtm-save" 1
         "GIMP Table Magic"
         "Allows you to draw an HTML table in GIMP. See help for more info."
         "Daniel Dunbar"
         "Daniel Dunbar"
         "1998"
         "HTML table"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "html,htm")
            (mime-type "text/html"))
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/value-propagate" 1413468137
    (proc-def "plug-in-vpropagate" 1
         "Propagate certain colors to neighboring pixels"
         "Propagate values of the layer"
         "Shuji Narazaki (narazaki@InetQ.or.jp)"
         "Shuji Narazaki"
         "1996-1997"
         "_Value Propagate..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         9 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (not used)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "propagate-mode" "propagate 0:white, 1:black, 2:middle value 3:foreground to peak, 4:foreground, 5:background, 6:opaque, 7:transparent")
        (proc-arg 0 "propagating-channel" "channels which values are propagated")
        (proc-arg 3 "propagating-rate" "0.0 <= propagatating_rate <= 1.0")
        (proc-arg 0 "direction-mask" "0 <= direction-mask <= 15")
        (proc-arg 0 "lower-limit" "0 <= lower-limit <= 255")
        (proc-arg 0 "upper-limit" "0 <= upper-limit <= 255"))
    (proc-def "plug-in-erode" 1
         "Shrink lighter areas of the image"
         "Erode image"
         "Shuji Narazaki (narazaki@InetQ.or.jp)"
         "Shuji Narazaki"
         "1996-1997"
         "E_rode"
         1
        (menu-path "<Image>/Filters/Generic")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         9 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (not used)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "propagate-mode" "propagate 0:white, 1:black, 2:middle value 3:foreground to peak, 4:foreground, 5:background, 6:opaque, 7:transparent")
        (proc-arg 0 "propagating-channel" "channels which values are propagated")
        (proc-arg 3 "propagating-rate" "0.0 <= propagatating_rate <= 1.0")
        (proc-arg 0 "direction-mask" "0 <= direction-mask <= 15")
        (proc-arg 0 "lower-limit" "0 <= lower-limit <= 255")
        (proc-arg 0 "upper-limit" "0 <= upper-limit <= 255"))
    (proc-def "plug-in-dilate" 1
         "Grow lighter areas of the image"
         "Dilate image"
         "Shuji Narazaki (narazaki@InetQ.or.jp)"
         "Shuji Narazaki"
         "1996-1997"
         "_Dilate"
         1
        (menu-path "<Image>/Filters/Generic")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         9 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (not used)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "propagate-mode" "propagate 0:white, 1:black, 2:middle value 3:foreground to peak, 4:foreground, 5:background, 6:opaque, 7:transparent")
        (proc-arg 0 "propagating-channel" "channels which values are propagated")
        (proc-arg 3 "propagating-rate" "0.0 <= propagatating_rate <= 1.0")
        (proc-arg 0 "direction-mask" "0 <= direction-mask <= 15")
        (proc-arg 0 "lower-limit" "0 <= lower-limit <= 255")
        (proc-arg 0 "upper-limit" "0 <= upper-limit <= 255")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/plasma" 1413468133
    (proc-def "plug-in-plasma" 1
         "Create a random plasma texture"
         "More help"
         "Stephen Norris & (ported to 1.0 by) Eiichi Takamori"
         "Stephen Norris"
         "May 2000"
         "_Plasma..."
         1
        (menu-path "<Image>/Filters/Render/Clouds")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "seed" "Random seed")
        (proc-arg 3 "turbulence" "Turbulence of plasma")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/contrast-stretch-hsv" 1413468132
    (proc-def "plug-in-autostretch-hsv" 1
         "Stretch image contrast to cover the maximum possible range"
         "This simple plug-in does an automatic contrast stretch.  For each channel in the image, it finds the minimum and maximum values... it uses those values to stretch the individual histograms to the full contrast range.  For some images it may do just what you want; for others it may be total crap :).  This version differs from Contrast Autostretch in that it works in HSV space, and preserves hue."
         "Scott Goehring and Federico Mena Quintero"
         "Scott Goehring and Federico Mena Quintero"
         "1997"
         "Stretch _HSV"
         1
        (menu-path "<Image>/Colors/Auto")
        (icon stock-id -1 "")
         "RGB*, INDEXED*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/lcms" 1413468133
    (proc-def "plug-in-icc-profile-set" 1
         "Set a color profile on the image"
         "This procedure sets an ICC color profile on an image using the 'icc-profile' parasite. It does not do any color conversion."
         "Sven Neumann"
         "Sven Neumann"
         "2006, 2007"
         "_Assign Color Profile..."
         1
        (menu-path "<Image>/Image/Mode/Color Profile")
        (icon stock-id -1 "")
         "RGB*, INDEXED*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 4 "profile" "Filename of an ICC color profile"))
    (proc-def "plug-in-icc-profile-set-rgb" 1
         "Set the default RGB color profile on the image"
         "This procedure sets the user-configured RGB profile on an image using the 'icc-profile' parasite. If no RGB profile is configured, sRGB is assumed and the parasite is unset. This procedure does not do any color conversion."
         "Sven Neumann"
         "Sven Neumann"
         "2006, 2007"
         "Assign default RGB Profile"
         0
        (icon stock-id -1 "")
         "RGB*, INDEXED*"
         2 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image"))
    (proc-def "plug-in-icc-profile-apply" 1
         "Apply a color profile on the image"
         "This procedure transform from the image's color profile (or the default RGB profile if none is set) to the given ICC color profile. Only RGB color profiles are accepted. The profile is then set on the image using the 'icc-profile' parasite."
         "Sven Neumann"
         "Sven Neumann"
         "2006, 2007"
         "_Convert to Color Profile..."
         1
        (menu-path "<Image>/Image/Mode/Color Profile")
        (icon stock-id -1 "")
         "RGB*, INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 4 "profile" "Filename of an ICC color profile")
        (proc-arg 0 "intent" "Rendering intent (enum GimpColorRenderingIntent)")
        (proc-arg 0 "bpc" "Black point compensation"))
    (proc-def "plug-in-icc-profile-apply-rgb" 1
         "Apply default RGB color profile on the image"
         "This procedure transform from the image's color profile (or the default RGB profile if none is set) to the configured default RGB color profile.  The profile is then set on the image using the 'icc-profile' parasite.  If no RGB color profile is configured, sRGB is assumed and the parasite is unset."
         "Sven Neumann"
         "Sven Neumann"
         "2006, 2007"
         "Convert to default RGB Profile"
         0
        (icon stock-id -1 "")
         "RGB*, INDEXED*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 0 "intent" "Rendering intent (enum GimpColorRenderingIntent)")
        (proc-arg 0 "bpc" "Black point compensation"))
    (proc-def "plug-in-icc-profile-info" 1
         "Retrieve information about an image's color profile"
         "This procedure returns information about the RGB color profile attached to an image. If no RGB color profile is attached, sRGB is assumed."
         "Sven Neumann"
         "Sven Neumann"
         "2006, 2007"
         "Image Color Profile Information"
         0
        (icon stock-id -1 "")
         "*"
         1 3
        (proc-arg 13 "image" "Input image")
        (proc-arg 4 "profile-name" "Name")
        (proc-arg 4 "profile-desc" "Description")
        (proc-arg 4 "profile-info" "Info"))
    (proc-def "plug-in-icc-profile-file-info" 1
         "Retrieve information about a color profile"
         "This procedure returns information about an ICC color profile on disk."
         "Sven Neumann"
         "Sven Neumann"
         "2006, 2007"
         "Color Profile Information"
         0
        (icon stock-id -1 "")
         "*"
         1 3
        (proc-arg 4 "profile" "Filename of an ICC color profile")
        (proc-arg 4 "profile-name" "Name")
        (proc-arg 4 "profile-desc" "Description")
        (proc-arg 4 "profile-info" "Info")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/noise-rgb" 1413468135
    (proc-def "plug-in-rgb-noise" 1
         "Distort colors by random amounts"
         "Add normally distributed (zero mean) random values to image channels.  Noise may be additive (uncorrelated) or multiplicative (correlated - also known as speckle noise). For colour images colour channels may be treated together or independently."
         "Torsten Martinsen"
         "Torsten Martinsen"
         "May 2000"
         "_RGB Noise..."
         1
        (menu-path "<Image>/Filters/Noise")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         9 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "independent" "Noise in channels independent")
        (proc-arg 0 "correlated" "Noise correlated (i.e. multiplicative not additive)")
        (proc-arg 3 "noise-1" "Noise in the first channel (red, gray)")
        (proc-arg 3 "noise-2" "Noise in the second channel (green, gray_alpha)")
        (proc-arg 3 "noise-3" "Noise in the third channel (blue)")
        (proc-arg 3 "noise-4" "Noise in the fourth channel (alpha)"))
    (proc-def "plug-in-noisify" 1
         "Adds random noise to image channels "
         "Add normally distributed random values to image channels. For colour images each colour channel may be treated together or independently."
         "Torsten Martinsen"
         "Torsten Martinsen"
         "May 2000"
         ""
         0
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         8 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "independent" "Noise in channels independent")
        (proc-arg 3 "noise-1" "Noise in the first channel (red, gray)")
        (proc-arg 3 "noise-2" "Noise in the second channel (green, gray_alpha)")
        (proc-arg 3 "noise-3" "Noise in the third channel (blue)")
        (proc-arg 3 "noise-4" "Noise in the fourth channel (alpha)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/channel-mixer" 1413468139
    (proc-def "plug-in-colors-channel-mixer" 1
         "Alter colors by mixing RGB Channels"
         "This plug-in mixes the RGB channels."
         "Martin Guldahl <mguldahl@xmission.com>"
         "Martin Guldahl <mguldahl@xmission.com>"
         "2002"
         "Channel Mi_xer..."
         1
        (menu-path "<Image>/Colors/Components")
        (icon stock-id -1 "")
         "RGB*"
         13 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "monochrome" "Monochrome { TRUE, FALSE }")
        (proc-arg 3 "rr-gain" "Set the red gain for the red channel")
        (proc-arg 3 "rg-gain" "Set the green gain for the red channel")
        (proc-arg 3 "rb-gain" "Set the blue gain for the red channel")
        (proc-arg 3 "gr-gain" "Set the red gain for the green channel")
        (proc-arg 3 "gg-gain" "Set the green gain for the green channel")
        (proc-arg 3 "gb-gain" "Set the blue gain for the green channel")
        (proc-arg 3 "br-gain" "Set the red gain for the blue channel")
        (proc-arg 3 "bg-gain" "Set the green gain for the blue channel")
        (proc-arg 3 "bb-gain" "Set the blue gain for the blue channel")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/edge-dog" 1413468132
    (proc-def "plug-in-dog" 1
         "Edge detection with control of edge thickness"
         "Applies two Gaussian blurs to the drawable, and subtracts the results.  This is robust and widely used method for detecting edges."
         "Spencer Kimball, Peter Mattis, Sven Neumann, William Skaggs"
         "Spencer Kimball, Peter Mattis, Sven Neumann, William Skaggs"
         "1995-2004"
         "_Difference of Gaussians..."
         1
        (menu-path "<Image>/Filters/Edge-Detect")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "inner" "Radius of inner gaussian blur (in pixels, > 0.0)")
        (proc-arg 3 "outer" "Radius of outer gaussian blur (in pixels, > 0.0)")
        (proc-arg 0 "normalize" "Normalize { TRUE, FALSE }")
        (proc-arg 0 "invert" "Invert { TRUE, FALSE }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/checkerboard" 1413468141
    (proc-def "plug-in-checkerboard" 1
         "Create a checkerboard pattern"
         "More here later"
         "Brent Burton & the Edward Blevins"
         "Brent Burton & the Edward Blevins"
         "1997"
         "_Checkerboard..."
         1
        (menu-path "<Image>/Filters/Render/Pattern")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "check-mode" "Check mode { REGULAR (0), PSYCHOBILY (1) }")
        (proc-arg 0 "check-size" "Size of the checks")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-psd-save" 1413468133
    (proc-def "file-psd-save" 1
         "saves files in the Photoshop(tm) PSD file format"
         "This filter saves files of Adobe Photoshop(tm) native PSD format.  These files may be of any image type supported by GIMP, with or without layers, layer masks, aux channels and guides."
         "Monigotes"
         "Monigotes"
         "2000"
         "Photoshop image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "psd")
            (mime-type "image/x-psd"))
         "RGB*, GRAY*, INDEXED*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2)")
        (proc-arg 0 "fill-order" "Fill Order: { MSB to LSB (0), LSB to MSB (1)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/tile-paper" 1413468134
    (proc-def "plug-in-papertile" 1
         "Cut image into paper tiles, and slide them"
         "This plug-in cuts an image into paper tiles and slides each paper tile."
         "Hirotsuna Mizuno <s1041150@u-aizu.ac.jp>"
         "Copyright (c)1997-1999 Hirotsuna Mizuno"
         "September 31, 1999"
         "_Paper Tile..."
         1
        (menu-path "<Image>/Filters/Map")
        (icon stock-id -1 "")
         "RGB*"
         11 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "tile-size" "Tile size (pixels)")
        (proc-arg 3 "move-max" "Max move rate (%)")
        (proc-arg 0 "fractional-type" "0:Background 1:Ignore 2:Force")
        (proc-arg 0 "wrap-around" "Wrap around (bool)")
        (proc-arg 0 "centering" "Centering (bool)")
        (proc-arg 0 "background-type" "0:Transparent 1:Inverted 2:Image? 3:FG 4:BG 5:Color")
        (proc-arg 0 "background-color" "Background color (for bg-type 5)")
        (proc-arg 0 "background-alpha" "Opacity (for bg-type 5)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/fractal-explorer" 1413468134
    (proc-def "plug-in-fractalexplorer" 1
         "Render fractal art"
         "No help yet."
         "Daniel Cotting (cotting@multimania.com, www.multimania.com/cotting)"
         "Daniel Cotting (cotting@multimania.com, www.multimania.com/cotting)"
         "December, 1998"
         "_Fractal Explorer..."
         1
        (menu-path "<Image>/Filters/Render")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         22 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 2 "fractaltype" "0: Mandelbrot; 1: Julia; 2: Barnsley 1; 3: Barnsley 2; 4: Barnsley 3; 5: Spider; 6: ManOWar; 7: Lambda; 8: Sierpinski")
        (proc-arg 3 "xmin" "xmin fractal image delimiter")
        (proc-arg 3 "xmax" "xmax fractal image delimiter")
        (proc-arg 3 "ymin" "ymin fractal image delimiter")
        (proc-arg 3 "ymax" "ymax fractal image delimiter")
        (proc-arg 3 "iter" "Iteration value")
        (proc-arg 3 "cx" "cx value ( only Julia)")
        (proc-arg 3 "cy" "cy value ( only Julia)")
        (proc-arg 2 "colormode" "0: Apply colormap as specified by the parameters below; 1: Apply active gradient to final image")
        (proc-arg 3 "redstretch" "Red stretching factor")
        (proc-arg 3 "greenstretch" "Green stretching factor")
        (proc-arg 3 "bluestretch" "Blue stretching factor")
        (proc-arg 2 "redmode" "Red application mode (0:SIN;1:COS;2:NONE)")
        (proc-arg 2 "greenmode" "Green application mode (0:SIN;1:COS;2:NONE)")
        (proc-arg 2 "bluemode" "Blue application mode (0:SIN;1:COS;2:NONE)")
        (proc-arg 2 "redinvert" "Red inversion mode (1: enabled; 0: disabled)")
        (proc-arg 2 "greeninvert" "Green inversion mode (1: enabled; 0: disabled)")
        (proc-arg 2 "blueinvert" "Green inversion mode (1: enabled; 0: disabled)")
        (proc-arg 0 "ncolors" "Number of Colors for mapping (2<=ncolors<=8192)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/procedure-browser" 1413468138
    (proc-def "plug-in-dbbrowser" 1
         "List available procedures in the PDB"
         ""
         "Thomas Noel"
         "Thomas Noel"
         "23th june 1997"
         "Procedure _Browser"
         1
        (menu-path "<Image>/Help/Programming")
        (icon stock-id -1 "")
         ""
         1 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-glob" 1413468134
    (proc-def "file-glob" 1
         "Returns a list of matching filenames"
         "This can be useful in scripts and other plugins (e.g., batch-conversion). See the glob(7) manpage for more info. Note however that this isn't a full-featured glob implementation. It only handles simple patterns like \"/home/foo/bar/*.jpg\"."
         "Sven Neumann"
         "Sven Neumann"
         "2004"
         ""
         0
        (icon stock-id -1 "")
         ""
         2 2
        (proc-arg 4 "pattern" "The glob pattern (in UTF-8 encoding)")
        (proc-arg 0 "encoding" "Encoding of the returned names: { UTF-8 (0), filename encoding (1) }")
        (proc-arg 0 "num-files" "The number of returned names")
        (proc-arg 9 "files" "The list of matching names")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-wmf" 1413468136
    (proc-def "file-wmf-load" 1
         "Loads files in the WMF file format"
         "Loads files in the WMF file format"
         "Dom Lachowicz <cinamod@hotmail.com>"
         "Dom Lachowicz <cinamod@hotmail.com>"
         "(c) 2003 - Version 0.3.0"
         "Microsoft WMF file"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "wmf,apm")
            (magic "0,string,\\327\\315\\306\\232,0,string,\\1\\0\\11\\0")
            (mime-type "image/x-wmf")
            (thumb-loader "file-wmf-load-thumb"))
         ""
         6 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 3 "resolution" "Resolution to use for rendering the WMF (defaults to 72 dpi")
        (proc-arg 0 "width" "Width (in pixels) to load the WMF in, 0 for original width")
        (proc-arg 0 "height" "Height (in pixels) to load the WMF in, 0 for original height")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-wmf-load-thumb" 1
         "Loads a small preview from a WMF image"
         ""
         "Dom Lachowicz <cinamod@hotmail.com>"
         "Dom Lachowicz <cinamod@hotmail.com>"
         "(c) 2003 - Version 0.3.0"
         ""
         0
        (icon stock-id -1 "")
         ""
         2 3
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Thumbnail image")
        (proc-arg 0 "image-width" "Width of full-sized image")
        (proc-arg 0 "image-height" "Height of full-sized image")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/hot" 1413468137
    (proc-def "plug-in-hot" 1
         "Find and fix pixels that may be unsafely bright"
         "hot scans an image for pixels that will give unsave values of chrominance or composite signale amplitude when encoded into an NTSC or PAL signal.  Three actions can be performed on these ``hot'' pixels. (0) reduce luminance, (1) reduce saturation, or (2) Blacken."
         "Eric L. Hernes, Alan Wm Paeth"
         "Eric L. Hernes"
         "1997"
         "_Hot..."
         1
        (menu-path "<Image>/Colors/Modify")
        (icon stock-id -1 "")
         "RGB"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "The Image")
        (proc-arg 16 "drawable" "The Drawable")
        (proc-arg 0 "mode" "Mode { NTSC (0), PAL (1) }")
        (proc-arg 0 "action" "The action to perform")
        (proc-arg 0 "new-layer" "Create a new layer { TRUE, FALSE }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-aa" 1413468133
    (proc-def "file-aa-save" 1
         "Saves grayscale image in various text formats"
         "This plug-in uses aalib to save grayscale image as ascii art into a variety of text formats"
         "Tim Newsome <nuisance@cmu.edu>"
         "Tim Newsome <nuisance@cmu.edu>"
         "1997"
         "ASCII art"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "txt,ansi,text")
            (mime-type "text/plain"))
         "RGB*, GRAY*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 4 "file-type" "File type to use")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/python-eval.py" 1413468057
    (proc-def "python-fu-eval" 1
         "Evaluate Python code"
         "Evaluate python code under the python interpreter (primarily for batch mode)"
         "Manish Singh"
         "Manish Singh"
         "2006"
         ""
         0
        (icon stock-id -1 "")
         ""
         2 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "code" "The code to evaluate")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/animation-play" 1413468139
    (proc-def "plug-in-animationplay" 1
         "Preview a GIMP layer-based animation"
         ""
         "Adam D. Moss <adam@gimp.org>"
         "Adam D. Moss <adam@gimp.org>"
         "1997, 1998..."
         "_Playback..."
         1
        (menu-path "<Image>/Filters/Animation")
        (icon stock-id -1 "gtk-media-play")
         "RGB*, INDEXED*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-pdf-save" 1413468132
    (proc-def "file-pdf-save" 1
         "Save files in PDF format"
         "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript."
         "Barak Itkin"
         "Copyright Barak Itkin"
         "August 2009"
         "Portable Document Format"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "pdf")
            (mime-type "application/pdf"))
         "RGB*, GRAY*, INDEXED*"
         8 0
        (proc-arg 0 "run-mode" "Run mode")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE")
        (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE")
        (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)"))
    (proc-def "file-pdf-save-multi" 1
         "Save files in PDF format"
         "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript."
         "Barak Itkin"
         "Copyright Barak Itkin"
         "August 2009"
         "_Create multipage PDF..."
         0
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED*"
         8 0
        (proc-arg 0 "run-mode" "Run mode")
        (proc-arg 5 "images" "Input image for each page (An image can appear more than once)")
        (proc-arg 0 "count" "The amount of images entered (This will be the amount of pages). 1 <= count <= MAX_PAGE_COUNT")
        (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE")
        (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE")
        (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/iwarp" 1413468137
    (proc-def "plug-in-iwarp" 1
         "Use mouse control to warp image areas"
         "Interactive warping of the specified drawable"
         "Norbert Schmitz"
         "Norbert Schmitz"
         "1997"
         "_IWarp..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/van-gogh-lic" 1413468139
    (proc-def "plug-in-lic" 1
         "Special effects that nobody understands"
         "No help yet"
         "Tom Bech & Federico Mena Quintero"
         "Tom Bech & Federico Mena Quintero"
         "Version 0.14, September 24 1997"
         "_Van Gogh (LIC)..."
         1
        (menu-path "<Image>/Filters/Artistic")
        (icon stock-id -1 "")
         "RGB*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/photocopy" 1413468141
    (proc-def "plug-in-photocopy" 1
         "Simulate color distortion produced by a copy machine"
         "Propagates dark values in an image based on each pixel's relative darkness to a neighboring average. The idea behind this filter is to give the look of a photocopied version of the image, with toner transfered based on the relative darkness of a particular region. This is achieved by darkening areas of the image which are measured to be darker than a neighborhood average and setting other pixels to white. In this way, sufficiently large shifts in intensity are darkened to black. The rate at which they are darkened to black is determined by the second pct_black parameter. The mask_radius parameter controls the size of the pixel neighborhood over which the average intensity is computed and then compared to each pixel in the neighborhood to decide whether or not to darken it to black. Large values for mask_radius result in very thick black areas bordering the regions of white and much less detail for black areas everywhere including inside regions of color. Small values result in less toner overall and more detail everywhere. Small values for the pct_black make the blend from the white regions to the black border lines smoother and the toner regions themselves thinner and less noticable; larger values achieve the opposite effect."
         "Spencer Kimball"
         "Bit Specialists, Inc."
         "2001"
         "_Photocopy..."
         1
        (menu-path "<Image>/Filters/Artistic")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "mask-radius" "Photocopy mask radius (radius of pixel neighborhood)")
        (proc-arg 3 "sharpness" "Sharpness (detail level) (0.0 - 1.0)")
        (proc-arg 3 "pct-black" "Percentage of darkened pixels to set to black (0.0 - 1.0)")
        (proc-arg 3 "pct-white" "Percentage of non-darkened pixels left white (0.0 - 1.0)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/foggify.py" 1413468057
    (proc-def "python-fu-foggify" 1
         "Add a layer of fog"
         "Adds a layer of fog to the image."
         "James Henstridge"
         "James Henstridge"
         "1999,2007"
         "_Fog..."
         1
        (menu-path "<Image>/Filters/Render/Clouds")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "name" "Layer name")
        (proc-arg 10 "colour" "Fog color")
        (proc-arg 3 "turbulence" "Turbulence")
        (proc-arg 3 "opacity" "Opacity"))
    (locale-def "gimp20-python" "/usr/share/locale"))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/threshold-alpha" 1413468139
    (proc-def "plug-in-threshold-alpha" 1
         "Make transparency all-or-nothing"
         ""
         "Shuji Narazaki (narazaki@InetQ.or.jp)"
         "Shuji Narazaki"
         "1997"
         "_Threshold Alpha..."
         1
        (menu-path "<Image>/Layer/Transparency/Modify")
        (icon stock-id -1 "")
         "RGBA,GRAYA"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (not used)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "threshold" "Threshold")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-openraster.py" 1413468057
    (proc-def "file-openraster-load-thumb" 1
         "loads a thumbnail from an OpenRaster (.ora) file"
         "loads a thumbnail from an OpenRaster (.ora) file"
         "Jon Nordby"
         "Jon Nordby"
         "2009"
         ""
         0
        (icon stock-id -1 "")
         ""
         3 3
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Thumbnail image")
        (proc-arg 0 "image-width" "Width of full-sized image")
        (proc-arg 0 "image-height" "Height of full-sized image"))
    (proc-def "file-openraster-load" 1
         "load an OpenRaster (.ora) file"
         "load an OpenRaster (.ora) file"
         "Jon Nordby"
         "Jon Nordby"
         "2009"
         "OpenRaster"
         1
        (menu-path "<Load>")
        (icon stock-id -1 "")
        (load-proc
            (extension "ora")
            (mime-type "image/openraster")
            (thumb-loader "file-openraster-load-thumb"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-openraster-save" 1
         "save an OpenRaster (.ora) file"
         "save an OpenRaster (.ora) file"
         "Jon Nordby"
         "Jon Nordby"
         "2009"
         "OpenRaster"
         1
        (menu-path "<Save>")
        (icon stock-id -1 "")
        (save-proc
            (extension "ora"))
         "*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "filename" "The name of the file")
        (proc-arg 4 "raw-filename" "The name of the file")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/lens-flare" 1413468134
    (proc-def "plug-in-flarefx" 1
         "Add a lens flare effect"
         "Adds a lens flare effects.  Makes your image look like it was snapped with a cheap camera with a lot of lens :)"
         "Karl-Johan Andersson"
         "Karl-Johan Andersson"
         "May 2000"
         "Lens _Flare..."
         1
        (menu-path "<Image>/Filters/Light and Shadow/Light")
        (icon stock-id -1 "")
         "RGB*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "pos-x" "X-position")
        (proc-arg 0 "pos-y" "Y-position")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/print" 1413468135
    (proc-def "file-print-gtk" 1
         "Print the image"
         "Print the image using the GTK+ Print API."
         "Bill Skaggs, Sven Neumann, Stefan Röllin"
         "Bill Skaggs <weskaggs@primate.ucdavis.edu>"
         "2006 - 2008"
         "_Print..."
         1
        (menu-path "<Image>/File/Send")
        (icon stock-id -1 "gtk-print")
         "*"
         2 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 13 "image" "Image to print")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/mail" 1413468137
    (proc-def "plug-in-mail-image" 1
         "Send the image by email"
         "You need to have sendmail installed"
         "Adrian Likins, Reagan Blundell"
         "Adrian Likins, Reagan Blundell, Daniel Risacher, Spencer Kimball and Peter Mattis"
         "1995-1997"
         "Send by E_mail..."
         1
        (menu-path "<Image>/File/Send")
        (icon inline-pixbuf 608 "GdkP\0\0\2\140\2\1\0\2\0\0\0\100\0\0\0\20\0\0\0\20\245\0\0\0\0\1\210\212\205\60\205\210\212\205\377\1\210\212\205\60\210\0\0\0\0\2\210\212\205\60\210\212\205\377\205\377\377\377\377\2\210\212\205\377\210\212\205\60\206\0\0\0\0\13\210\212\205\60\210\212\205\377\377\377\377\377\331\326\320\377\311\307\301\377\301\277\272\377\257\254\251\377\241\240\232\377\377\377\377\377\210\212\205\377\210\212\205\60\204\0\0\0\0\15\210\212\205\60\210\212\205\377\377\377\377\377\331\326\320\377\250\247\241\377\276\275\271\377\316\315\312\377\317\316\314\377\306\305\305\377\275\275\275\377\377\377\377\377\210\212\205\377\210\212\205\60\203\0\0\0\0\7\210\212\205\377\344\344\343\377\271\270\263\377\225\224\216\377\333\332\331\377\354\354\353\377\365\365\365\377\202\377\377\377\377\4\305\305\305\377\261\256\252\377\352\352\351\377\210\212\205\377\203\0\0\0\0\4\210\212\205\377\367\367\367\377\257\256\254\377\365\365\365\377\204\377\377\377\377\5\353\353\353\377\330\330\330\377\315\314\311\377\367\367\367\377\210\212\205\377\203\0\0\0\0\4\210\212\205\377\377\377\377\377\346\345\342\377\252\251\247\377\202\353\353\353\377\7\341\341\341\377\330\330\330\377\317\317\317\377\246\245\241\377\363\363\362\377\377\377\377\377\210\212\205\377\203\0\0\0\0\5\210\212\205\377\377\377\377\377\373\373\370\377\342\342\337\377\222\221\221\377\202\266\264\263\377\6\274\273\267\377\241\240\240\377\363\363\362\377\367\365\363\377\377\377\377\377\210\212\205\377\203\0\0\0\0\5\210\212\205\377\377\377\377\377\373\373\370\377\360\357\355\377\245\242\235\377\203\373\373\370\377\5\220\215\207\377\371\367\363\377\362\360\354\377\377\377\377\377\210\212\205\377\203\0\0\0\0\4\210\212\205\377\377\377\377\377\373\372\367\377\262\261\256\377\203\373\373\370\377\202\371\370\364\377\4\274\273\267\377\351\347\342\377\377\377\377\377\210\212\205\377\203\0\0\0\0\15\210\212\205\377\377\377\377\377\311\307\304\377\373\373\370\377\367\365\361\377\372\371\366\377\370\366\362\377\372\370\365\377\367\365\362\377\353\350\343\377\317\316\312\377\377\377\377\377\210\212\205\377\203\0\0\0\0\2\210\212\205\377\360\360\360\377\211\377\377\377\377\2\360\360\360\377\210\212\205\377\203\0\0\0\0\1\210\212\205\217\213\210\212\205\377\1\210\212\205\217\221\0\0\0\0")
         "*"
         9 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "to-address" "The email address to send to")
        (proc-arg 4 "from-address" "The email address for the From: field")
        (proc-arg 4 "subject" "The subject")
        (proc-arg 4 "comment" "The Comment")
        (proc-arg 0 "encapsulation" "ignored")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/help" 1413468139
    (proc-def "extension-gimp-help" 2
         ""
         ""
         "Sven Neumann <sven@gimp.org>, Michael Natterer <mitch@gimp.org>, Henrik Brix Andersen <brix@gimp.org>"
         "Sven Neumann, Michael Natterer & Henrik Brix Andersen"
         "1999-2008"
         ""
         0
        (icon stock-id -1 "")
         ""
         4 0
        (proc-arg 0 "num-domain-names" "")
        (proc-arg 9 "domain-names" "")
        (proc-arg 0 "num-domain-uris" "")
        (proc-arg 9 "domain-uris" "")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-jp2-load" 1413468134
    (proc-def "file-jp2-load" 1
         "Loads JPEG 2000 images."
         "The JPEG 2000 image loader."
         "Aurimas Juška"
         "Aurimas Juška, Florian Traverse"
         "2009"
         "JPEG 2000 image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "jp2,jpc,jpx,j2k,jpf")
            (magic "4,string,jP,0,string,ÿOÿQ")
            (mime-type "image/jp2"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/colorify" 1413468137
    (proc-def "plug-in-colorify" 1
         "Replace all colors with shades of a specified color"
         "Makes an average of the RGB channels and uses it to set the color"
         "Francisco Bustamante"
         "Francisco Bustamante"
         "1.1"
         "Colorif_y..."
         1
        (menu-path "<Image>/Colors/Modify")
        (icon stock-id -1 "")
         "RGB*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 10 "color" "Color to apply")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/sinus" 1413468135
    (proc-def "plug-in-sinus" 1
         "Generate complex sinusoidal textures"
         "FIX ME: sinus help"
         "Xavier Bouchoux"
         "Xavier Bouchoux"
         "1997"
         "_Sinus..."
         1
        (menu-path "<Image>/Filters/Render/Pattern")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         16 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "xscale" "Scale value for x axis")
        (proc-arg 3 "yscale" "Scale value dor y axis")
        (proc-arg 3 "complex" "Complexity factor")
        (proc-arg 0 "seed" "Seed value for random number generator")
        (proc-arg 0 "tiling" "If set, the pattern generated will tile")
        (proc-arg 0 "perturb" "If set, the pattern is a little more distorted...")
        (proc-arg 0 "colors" "where to take the colors (0= B&W,  1= fg/bg, 2= col1/col2)")
        (proc-arg 10 "col1" "fist color (sometimes unused)")
        (proc-arg 10 "col2" "second color (sometimes unused)")
        (proc-arg 3 "alpha1" "alpha for the first color (used if the drawable has an alpha chanel)")
        (proc-arg 3 "alpha2" "alpha for the second color (used if the drawable has an alpha chanel)")
        (proc-arg 0 "blend" "0= linear, 1= bilinear, 2= sinusoidal")
        (proc-arg 3 "blend-power" "Power used to strech the blend")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/tile-glass" 1413468140
    (proc-def "plug-in-glasstile" 1
         "Simulate distortion caused by square glass tiles"
         "Divide the image into square glassblocks in which the image is refracted."
         "Karl-Johan Andersson"
         "Karl-Johan Andersson"
         "May 2000"
         "_Glass Tile..."
         1
        (menu-path "<Image>/Filters/Artistic")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "tilex" "Tile width (10 - 50)")
        (proc-arg 0 "tiley" "Tile height (10 - 50)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/engrave" 1413468140
    (proc-def "plug-in-engrave" 1
         "Simulate an antique engraving"
         "Creates a black-and-white 'engraved' version of an image as seen in old illustrations"
         "Spencer Kimball & Peter Mattis, Eiichi Takamori, Torsten Martinsen"
         "Spencer Kimball & Peter Mattis, Eiichi Takamori, Torsten Martinsen"
         "1995,1996,1997"
         "En_grave..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGBA, GRAYA"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "height" "Resolution in pixels")
        (proc-arg 0 "limit" "Limit line width { TRUE, FALSE }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-cel" 1413468133
    (proc-def "file-cel-load" 1
         "Loads files in KISS CEL file format"
         "This plug-in loads individual KISS cell files."
         "Nick Lamb"
         "Nick Lamb <njl195@zepler.org.uk>"
         "May 1998"
         "KISS CEL"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "cel")
            (magic "0,string,KiSS\\040"))
         ""
         4 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "Filename to load image from")
        (proc-arg 4 "raw-filename" "Name entered")
        (proc-arg 4 "palette-filename" "Filename to load palette from")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-cel-save" 1
         "Saves files in KISS CEL file format"
         "This plug-in saves individual KISS cell files."
         "Nick Lamb"
         "Nick Lamb <njl195@zepler.org.uk>"
         "May 1998"
         "KISS CEL"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "cel"))
         "RGB*, INDEXED*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "Filename to save image to")
        (proc-arg 4 "raw-filename" "Name entered")
        (proc-arg 4 "palette-filename" "Filename to save palette to")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/edge-neon" 1413468140
    (proc-def "plug-in-neon" 1
         "Simulate the glowing boundary of a neon light"
         "This filter works in a manner similar to the edge plug-in, but uses the first derivative of the gaussian operator to achieve resolution independence. The IIR method of calculating the effect is utilized to keep the processing time constant between large and small standard deviations."
         "Spencer Kimball"
         "Bit Specialists, Inc."
         "2002"
         "_Neon..."
         1
        (menu-path "<Image>/Filters/Edge-Detect")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "radius" "Radius of neon effect (in pixels)")
        (proc-arg 3 "amount" "Effect enhancement variable (0.0 - 1.0)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/palette-sort.py" 1413468057
    (proc-def "python-fu-palette-sort" 1
         "Sort the colors in a palette"
         "palette_merge (palette, model, channel, ascending) -> new_palette"
         "Joao S. O. Bueno Calligaris, Carol Spears"
         "Joao S. O. Bueno Calligaris"
         "2006"
         "_Sort Palette..."
         1
        (menu-path "<Palettes>")
        (icon stock-id -1 "")
         ""
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "palette" "Palette")
        (proc-arg 4 "model" "Color model")
        (proc-arg 4 "channel" "Channel to sort")
        (proc-arg 0 "ascending" "Ascending"))
    (locale-def "gimp20-python" "/usr/share/locale"))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-bmp" 1413468135
    (proc-def "file-bmp-load" 1
         "Loads files of Windows BMP file format"
         "Loads files of Windows BMP file format"
         "Alexander Schulz"
         "Alexander Schulz"
         "1997"
         "Windows BMP image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "bmp")
            (magic "0,string,BM")
            (mime-type "image/bmp"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-bmp-save" 1
         "Saves files in Windows BMP file format"
         "Saves files in Windows BMP file format"
         "Alexander Schulz"
         "Alexander Schulz"
         "1997"
         "Windows BMP image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "bmp")
            (mime-type "image/bmp"))
         "INDEXED, GRAY, RGB*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-xmc" 1413468137
    (proc-def "file-xmc-load" 1
         "Loads files of X11 Mouse Cursor file format"
         "This plug-in loads X11 Mouse Cursor (XMC) files."
         "Takeshi Matsuyama <tksmashiw@gmail.com>"
         "Takeshi Matsuyama"
         "26 May 2009"
         "X11 Mouse Cursor"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "xmc")
            (magic "0,string,Xcur")
            (mime-type "image/x-xcursor")
            (thumb-loader "file-xmc-load-thumb"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-xmc-load-thumb" 1
         "Loads only first frame of X11 Mouse Cursor's animation sequence which nominal size is the closest of thumb-size to be used as a thumbnail"
         ""
         "Takeshi Matsuyama <tksmashiw@gmail.com>"
         "Takeshi Matsuyama"
         "26 May 2009"
         ""
         0
        (icon stock-id -1 "")
         ""
         2 5
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Thumbnail image")
        (proc-arg 0 "image-width" "The width of image")
        (proc-arg 0 "image-height" "The height of image")
        (proc-arg 0 "image-type" "The color type of image")
        (proc-arg 0 "image-num-layers" "The number of layeres"))
    (proc-def "file-xmc-save" 1
         "Saves files of X11 cursor file"
         "This plug-in saves X11 Mouse Cursor (XMC) files"
         "Takeshi Matsuyama <tksmashiw@gmail.com>"
         "Takeshi Matsuyama"
         "26 May 2009"
         "X11 Mouse Cursor"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "xmc")
            (mime-type "image/x-xcursor"))
         "RGBA"
         15 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 0 "x-hot" "X-coordinate of hot spot")
        (proc-arg 0 "y-hot" "Y-coordinate of hot spot\nUse (-1, -1) to keep original hot spot.")
        (proc-arg 0 "crop" "Auto-crop or not")
        (proc-arg 0 "size" "Default nominal size")
        (proc-arg 0 "size-replace" "Replace existent size or not.")
        (proc-arg 0 "delay" "Default delay")
        (proc-arg 0 "delay-replace" "Replace existent delay or not.")
        (proc-arg 4 "copyright" "Copyright information.")
        (proc-arg 4 "license" "License information.")
        (proc-arg 4 "other" "Other comment.(taken from \"gimp-comment\" parasite)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/antialias" 1413468136
    (proc-def "plug-in-antialias" 1
         "Antialias using the Scale3X edge-extrapolation algorithm"
         "Help - write me"
         "Adam D. Moss <adam@gimp.org>"
         "Adam D. Moss <adam@gimp.org>"
         "2005"
         "_Antialias"
         1
        (menu-path "<Image>/Filters/Enhance")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/contrast-retinex" 1413468136
    (proc-def "plug-in-retinex" 1
         "Enhance contrast using the Retinex method"
         "The Retinex Image Enhancement Algorithm is an automatic image enhancement method that enhances a digital image in terms of dynamic range compression, color independence from the spectral distribution of the scene illuminant, and color/lightness rendition."
         "Fabien Pelisson"
         "Fabien Pelisson"
         "2003"
         "Retine_x..."
         1
        (menu-path "<Image>/Colors/Modify")
        (icon stock-id -1 "")
         "RGB*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "scale" "Biggest scale value")
        (proc-arg 0 "nscales" "Number of scales")
        (proc-arg 0 "scales-mode" "Retinex distribution through scales")
        (proc-arg 3 "cvar" "Variance value")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/emboss" 1413468141
    (proc-def "plug-in-emboss" 1
         "Simulate an image created by embossing"
         "Emboss or Bumpmap the given drawable, specifying the angle and elevation for the light source."
         "Eric L. Hernes, John Schlag"
         "Eric L. Hernes"
         "1997"
         "_Emboss..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "The Image")
        (proc-arg 16 "drawable" "The Drawable")
        (proc-arg 3 "azimuth" "The Light Angle (degrees)")
        (proc-arg 3 "elevation" "The Elevation Angle (degrees)")
        (proc-arg 0 "depth" "The Filter Width")
        (proc-arg 0 "emboss" "Emboss or Bumpmap")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/compose" 1413468137
    (proc-def "plug-in-compose" 1
         "Create an image using multiple gray images as color channels"
         "This function creates a new image from multiple gray images"
         "Peter Kirchgessner"
         "Peter Kirchgessner (peter@kirchgessner.net)"
         "1997"
         "C_ompose..."
         1
        (menu-path "<Image>/Colors/Components")
        (icon stock-id -1 "")
         "GRAY*"
         7 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image1" "First input image")
        (proc-arg 16 "drawable" "Input drawable (not used)")
        (proc-arg 13 "image2" "Second input image")
        (proc-arg 13 "image3" "Third input image")
        (proc-arg 13 "image4" "Fourth input image")
        (proc-arg 4 "compose-type" "What to compose: \"RGB\", \"RGBA\", \"HSV\", \"HSL\", \"CMY\", \"CMYK\", \"LAB\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R709\", \"YCbCr_ITU_R470_256\", \"YCbCr_ITU_R709_256\"")
        (proc-arg 13 "new-image" "Output image"))
    (proc-def "plug-in-drawable-compose" 1
         "Compose an image from multiple drawables of gray images"
         "This function creates a new image from multiple drawables of gray images"
         "Peter Kirchgessner"
         "Peter Kirchgessner (peter@kirchgessner.net)"
         "1998"
         ""
         0
        (icon stock-id -1 "")
         "GRAY*"
         7 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image1" "First input image (not used)")
        (proc-arg 16 "drawable1" "First input drawable")
        (proc-arg 16 "drawable2" "Second input drawable")
        (proc-arg 16 "drawable3" "Third input drawable")
        (proc-arg 16 "drawable4" "Fourth input drawable")
        (proc-arg 4 "compose-type" "What to compose: \"RGB\", \"RGBA\", \"HSV\", \"HSL\", \"CMY\", \"CMYK\", \"LAB\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R709\", \"YCbCr_ITU_R470_256\", \"YCbCr_ITU_R709_256\"")
        (proc-arg 13 "new-image" "Output image"))
    (proc-def "plug-in-recompose" 1
         "Recompose an image that was previously decomposed"
         "This function recombines the grayscale layers produced by Decompose into a single RGB or RGBA layer, and replaces the originally decomposed layer with the result."
         "Bill Skaggs"
         "Bill Skaggs"
         "2004"
         "R_ecompose"
         1
        (menu-path "<Image>/Colors/Components")
        (icon stock-id -1 "")
         "GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Image to recompose from")
        (proc-arg 16 "drawable" "Not used")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-pnm" 1413468136
    (proc-def "file-pnm-load" 1
         "Loads files in the PNM file format"
         "This plug-in loads files in the various Netpbm portable file formats."
         "Erik Nygren"
         "Erik Nygren"
         "1996"
         "PNM Image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "pnm,ppm,pgm,pbm")
            (magic "0,string,P1,0,string,P2,0,string,P3,0,string,P4,0,string,P5,0,string,P6")
            (mime-type "image/x-portable-anymap"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-pnm-save" 1
         "Saves files in the PNM file format"
         "PNM saving handles all image types without transparency."
         "Erik Nygren"
         "Erik Nygren"
         "1996"
         "PNM image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "pnm")
            (mime-type "image/x-portable-anymap"))
         "RGB, GRAY, INDEXED"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "raw" "Specify non-zero for raw output, zero for ascii output"))
    (proc-def "file-pbm-save" 1
         "Saves files in the PBM file format"
         "PBM saving produces mono images without transparency."
         "Martin K Collins"
         "Erik Nygren"
         "2006"
         "PBM image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "pbm")
            (mime-type "image/x-portable-bitmap"))
         "RGB, GRAY, INDEXED"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "raw" "Specify non-zero for raw output, zero for ascii output"))
    (proc-def "file-pgm-save" 1
         "Saves files in the PGM file format"
         "PGM saving produces grayscale images without transparency."
         "Erik Nygren"
         "Erik Nygren"
         "1996"
         "PGM image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "pgm")
            (mime-type "image/x-portable-graymap"))
         "RGB, GRAY, INDEXED"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "raw" "Specify non-zero for raw output, zero for ascii output"))
    (proc-def "file-ppm-save" 1
         "Saves files in the PPM file format"
         "PPM saving handles RGB images without transparency."
         "Erik Nygren"
         "Erik Nygren"
         "1996"
         "PPM image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "ppm")
            (mime-type "image/x-portable-pixmap"))
         "RGB, GRAY, INDEXED"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "raw" "Specify non-zero for raw output, zero for ascii output")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/tile" 1413468133
    (proc-def "plug-in-tile" 1
         "Create an array of copies of the image"
         "This function creates a new image with a single layer sized to the specified 'new_width' and 'new_height' parameters.  The specified drawable is tiled into this layer.  The new layer will have the same type as the specified drawable and the new image will have a corresponding base type."
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1996-1997"
         "_Tile..."
         1
        (menu-path "<Image>/Filters/Map")
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED*"
         6 2
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "new-width" "New (tiled) image width")
        (proc-arg 0 "new-height" "New (tiled) image height")
        (proc-arg 0 "new-image" "Create a new image?")
        (proc-arg 13 "new-image" "Output image (-1 if new-image == FALSE)")
        (proc-arg 14 "new-layer" "Output layer (-1 if new-image == FALSE)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-png" 1413468141
    (proc-def "file-png-load" 1
         "Loads files in PNG file format"
         "This plug-in loads Portable Network Graphics (PNG) files."
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>"
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb <njl195@zepler.org.uk>"
         "1.3.4 - 03 September 2002"
         "PNG image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "png")
            (magic "0,string,‰PNG\r\n\032\n")
            (mime-type "image/png"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-png-save" 1
         "Saves files in PNG file format"
         "This plug-in saves Portable Network Graphics (PNG) files."
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>"
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb <njl195@zepler.org.uk>"
         "1.3.4 - 03 September 2002"
         "PNG image"
         0
        (icon stock-id -1 "")
         "RGB*,GRAY*,INDEXED*"
         12 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "interlace" "Use Adam7 interlacing?")
        (proc-arg 0 "compression" "Deflate Compression factor (0--9)")
        (proc-arg 0 "bkgd" "Write bKGD chunk?")
        (proc-arg 0 "gama" "Write gAMA chunk?")
        (proc-arg 0 "offs" "Write oFFs chunk?")
        (proc-arg 0 "phys" "Write pHYs chunk?")
        (proc-arg 0 "time" "Write tIME chunk?"))
    (proc-def "file-png-save2" 1
         "Saves files in PNG file format"
         "This plug-in saves Portable Network Graphics (PNG) files. This procedure adds 2 extra parameters to file-png-save that allows to control whether image comments are saved and whether transparent pixels are saved or nullified."
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>"
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb <njl195@zepler.org.uk>"
         "1.3.4 - 03 September 2002"
         "PNG image"
         0
        (icon stock-id -1 "")
         "RGB*,GRAY*,INDEXED*"
         14 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "interlace" "Use Adam7 interlacing?")
        (proc-arg 0 "compression" "Deflate Compression factor (0--9)")
        (proc-arg 0 "bkgd" "Write bKGD chunk?")
        (proc-arg 0 "gama" "Write gAMA chunk?")
        (proc-arg 0 "offs" "Write oFFs chunk?")
        (proc-arg 0 "phys" "Write pHYs chunk?")
        (proc-arg 0 "time" "Write tIME chunk?")
        (proc-arg 0 "comment" "Write comment?")
        (proc-arg 0 "svtrans" "Preserve color of transparent pixels?"))
    (proc-def "file-png-save-defaults" 1
         "Saves files in PNG file format"
         "This plug-in saves Portable Network Graphics (PNG) files, using the default settings stored as a parasite."
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>"
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb <njl195@zepler.org.uk>"
         "1.3.4 - 03 September 2002"
         "PNG image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "png")
            (mime-type "image/png"))
         "RGB*,GRAY*,INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in"))
    (proc-def "file-png-get-defaults" 1
         "Get the current set of defaults used by the PNG file save plug-in"
         "This procedure returns the current set of defaults stored as a parasite for the PNG save plug-in. These defaults are used to seed the UI, by the file_png_save_defaults procedure, and by gimp_file_save when it detects to use PNG."
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>"
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb <njl195@zepler.org.uk>"
         "1.3.4 - 03 September 2002"
         ""
         0
        (icon stock-id -1 "")
         ""
         0 9
        (proc-arg 0 "interlace" "Use Adam7 interlacing?")
        (proc-arg 0 "compression" "Deflate Compression factor (0--9)")
        (proc-arg 0 "bkgd" "Write bKGD chunk?")
        (proc-arg 0 "gama" "Write gAMA chunk?")
        (proc-arg 0 "offs" "Write oFFs chunk?")
        (proc-arg 0 "phys" "Write pHYs chunk?")
        (proc-arg 0 "time" "Write tIME chunk?")
        (proc-arg 0 "comment" "Write comment?")
        (proc-arg 0 "svtrans" "Preserve color of transparent pixels?"))
    (proc-def "file-png-set-defaults" 1
         "Set the current set of defaults used by the PNG file save plug-in"
         "This procedure set the current set of defaults stored as a parasite for the PNG save plug-in. These defaults are used to seed the UI, by the file_png_save_defaults procedure, and by gimp_file_save when it detects to use PNG."
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>"
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb <njl195@zepler.org.uk>"
         "1.3.4 - 03 September 2002"
         ""
         0
        (icon stock-id -1 "")
         ""
         9 0
        (proc-arg 0 "interlace" "Use Adam7 interlacing?")
        (proc-arg 0 "compression" "Deflate Compression factor (0--9)")
        (proc-arg 0 "bkgd" "Write bKGD chunk?")
        (proc-arg 0 "gama" "Write gAMA chunk?")
        (proc-arg 0 "offs" "Write oFFs chunk?")
        (proc-arg 0 "phys" "Write pHYs chunk?")
        (proc-arg 0 "time" "Write tIME chunk?")
        (proc-arg 0 "comment" "Write comment?")
        (proc-arg 0 "svtrans" "Preserve color of transparent pixels?")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/imagemap" 1413468135
    (proc-def "plug-in-imagemap" 1
         "Create a clickable imagemap"
         ""
         "Maurits Rijk"
         "Maurits Rijk"
         "1998-2005"
         "_Image Map..."
         1
        (menu-path "<Image>/Filters/Web")
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-mng" 1413468134
    (proc-def "file-mng-save" 1
         "Saves images in the MNG file format"
         "This plug-in saves images in the Multiple-image Network Graphics (MNG) format which can be used as a replacement for animated GIFs, and more."
         "Mukund Sivaraman <muks@mukund.org>"
         "Mukund Sivaraman <muks@mukund.org>"
         "November 19, 2002"
         "MNG animation"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "mng")
            (mime-type "image/x-mng"))
         "RGB*,GRAY*,INDEXED*"
         17 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "interlace" "Use interlacing")
        (proc-arg 0 "compression" "PNG deflate compression level (0 - 9)")
        (proc-arg 3 "quality" "JPEG quality factor (0.00 - 1.00)")
        (proc-arg 3 "smoothing" "JPEG smoothing factor (0.00 - 1.00)")
        (proc-arg 0 "loop" "(ANIMATED MNG) Loop infinitely")
        (proc-arg 0 "default-delay" "(ANIMATED MNG) Default delay between frames in milliseconds")
        (proc-arg 0 "default-chunks" "(ANIMATED MNG) Default chunks type (0 = PNG + Delta PNG; 1 = JNG + Delta PNG; 2 = All PNG; 3 = All JNG)")
        (proc-arg 0 "default-dispose" "(ANIMATED MNG) Default dispose type (0 = combine; 1 = replace)")
        (proc-arg 0 "bkgd" "Write bKGD (background color) chunk")
        (proc-arg 0 "gama" "Write gAMA (gamma) chunk")
        (proc-arg 0 "phys" "Write pHYs (image resolution) chunk")
        (proc-arg 0 "time" "Write tIME (creation time) chunk")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/web-browser" 1413468136
    (proc-def "plug-in-web-browser" 1
         "Open an URL in the user specified web browser"
         "Opens the given URL in the user specified web browser."
         "Henrik Brix Andersen <brix@gimp.org>"
         "2003"
         "2003/09/16"
         ""
         0
        (icon stock-id -1 "")
         ""
         1 0
        (proc-arg 4 "url" "URL to open")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/lighting" 1413468132
    (proc-def "plug-in-lighting" 1
         "Apply various lighting effects to an image"
         "No help yet"
         "Tom Bech & Federico Mena Quintero"
         "Tom Bech & Federico Mena Quintero"
         "Version 0.2.0, March 15 1998"
         "_Lighting Effects..."
         1
        (menu-path "<Image>/Filters/Light and Shadow/Light")
        (icon stock-id -1 "")
         "RGB*"
         24 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 16 "bumpdrawable" "Bumpmap drawable (set to 0 if disabled)")
        (proc-arg 16 "envdrawable" "Environmentmap drawable (set to 0 if disabled)")
        (proc-arg 0 "dobumpmap" "Enable bumpmapping (TRUE/FALSE)")
        (proc-arg 0 "doenvmap" "Enable envmapping (TRUE/FALSE)")
        (proc-arg 0 "bumpmaptype" "Type of mapping (0=linear,1=log, 2=sinusoidal, 3=spherical)")
        (proc-arg 0 "lighttype" "Type of lightsource (0=point,1=directional,3=spot,4=none)")
        (proc-arg 10 "lightcolor" "Lightsource color (r,g,b)")
        (proc-arg 3 "lightposition-x" "Lightsource position (x,y,z)")
        (proc-arg 3 "lightposition-y" "Lightsource position (x,y,z)")
        (proc-arg 3 "lightposition-z" "Lightsource position (x,y,z)")
        (proc-arg 3 "lightdirection-x" "Lightsource direction [x,y,z]")
        (proc-arg 3 "lightdirection-y" "Lightsource direction [x,y,z]")
        (proc-arg 3 "lightdirection-z" "Lightsource direction [x,y,z]")
        (proc-arg 3 "ambient-intensity" "Material ambient intensity (0..1)")
        (proc-arg 3 "diffuse-intensity" "Material diffuse intensity (0..1)")
        (proc-arg 3 "diffuse-reflectivity" "Material diffuse reflectivity (0..1)")
        (proc-arg 3 "specular-reflectivity" "Material specular reflectivity (0..1)")
        (proc-arg 3 "highlight" "Material highlight (0..->), note: it's expotential")
        (proc-arg 0 "antialiasing" "Apply antialiasing (TRUE/FALSE)")
        (proc-arg 0 "newimage" "Create a new image (TRUE/FALSE)")
        (proc-arg 0 "transparentbackground" "Make background transparent (TRUE/FALSE)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-faxg3" 1413468136
    (proc-def "file-faxg3-load" 1
         "loads g3 fax files"
         "This plug-in loads Fax G3 Image files."
         "Jochen Friedrich"
         "Jochen Friedrich, Gert Doering, Spencer Kimball & Peter Mattis"
         "0.6"
         "G3 fax image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "g3")
            (magic "4,string,Research")
            (mime-type "image/g3-fax"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/decompose" 1413468134
    (proc-def "plug-in-decompose" 1
         "Decompose an image into separate colorspace components"
         "This function creates new gray images with different channel information in each of them"
         "Peter Kirchgessner"
         "Peter Kirchgessner"
         "1997"
         "_Decompose..."
         0
        (icon stock-id -1 "")
         "RGB*"
         5 4
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "decompose-type" "What to decompose: \"RGB\", \"Red\", \"Green\", \"Blue\", \"RGBA\", \"HSV\", \"Hue\", \"Saturation\", \"Value\", \"HSL\", \"Hue (HSL)\", \"Saturation (HSL)\", \"Lightness\", \"CMY\", \"Cyan\", \"Magenta\", \"Yellow\", \"CMYK\", \"Cyan_K\", \"Magenta_K\", \"Yellow_K\", \"Alpha\", \"LAB\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R709\", \"YCbCr ITU R470 256\", \"YCbCr ITU R709 256\"")
        (proc-arg 0 "layers-mode" "Create channels as layers in a single image")
        (proc-arg 13 "new-image" "Output gray image")
        (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")
        (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")
        (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)"))
    (proc-def "plug-in-decompose-registered" 1
         "Decompose an image into separate colorspace components"
         "This function creates new gray images with different channel information in each of them. Pixels in the foreground color will appear black in all output images.  This can be used for things like crop marks that have to show up on all channels."
         "Peter Kirchgessner"
         "Peter Kirchgessner, Clarence Risher"
         "1997"
         "_Decompose..."
         1
        (menu-path "<Image>/Colors/Components")
        (icon stock-id -1 "")
         "RGB*"
         5 4
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "decompose-type" "What to decompose: \"RGB\", \"Red\", \"Green\", \"Blue\", \"RGBA\", \"HSV\", \"Hue\", \"Saturation\", \"Value\", \"HSL\", \"Hue (HSL)\", \"Saturation (HSL)\", \"Lightness\", \"CMY\", \"Cyan\", \"Magenta\", \"Yellow\", \"CMYK\", \"Cyan_K\", \"Magenta_K\", \"Yellow_K\", \"Alpha\", \"LAB\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R709\", \"YCbCr ITU R470 256\", \"YCbCr ITU R709 256\"")
        (proc-arg 0 "layers-mode" "Create channels as layers in a single image")
        (proc-arg 13 "new-image" "Output gray image")
        (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")
        (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")
        (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/contrast-stretch" 1413468137
    (proc-def "plug-in-c-astretch" 1
         "Stretch contrast to cover the maximum possible range"
         "This simple plug-in does an automatic contrast stretch.  For each channel in the image, it finds the minimum and maximum values... it uses those values to stretch the individual histograms to the full contrast range.  For some images it may do just what you want; for others it may not work that well."
         "Federico Mena Quintero"
         "Federico Mena Quintero"
         "1996"
         "_Stretch Contrast"
         1
        (menu-path "<Image>/Colors/Auto")
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/wind" 1413468138
    (proc-def "plug-in-wind" 1
         "Smear image to give windblown effect"
         "Renders a wind effect."
         "Nigel Wetten"
         "Nigel Wetten"
         "May 2000"
         "Wi_nd..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*"
         8 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "threshold" "Controls where blending will be done >= 0")
        (proc-arg 0 "direction" "Left or Right: 0 or 1")
        (proc-arg 0 "strength" "Controls the extent of the blending > 1")
        (proc-arg 0 "algorithm" "Algorithm { WIND (0), BLAST (1) }")
        (proc-arg 0 "edge" "Edge behavior { BOTH (0), LEADING (1), TRAILING (2) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-ico" 1413468134
    (proc-def "file-ico-load" 1
         "Loads files of Windows ICO file format"
         "Loads files of Windows ICO file format"
         "Christian Kreibich <christian@whoop.org>"
         "Christian Kreibich <christian@whoop.org>"
         "2002"
         "Microsoft Windows icon"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "ico")
            (magic "0,string,\\000\\001\\000\\000,0,string,\\000\\002\\000\\000")
            (mime-type "image/x-ico")
            (thumb-loader "file-ico-load-thumb"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-ico-load-thumb" 1
         "Loads a preview from an Windows ICO file"
         ""
         "Dom Lachowicz, Sven Neumann"
         "Sven Neumann <sven@gimp.org>"
         "2005"
         ""
         0
        (icon stock-id -1 "")
         ""
         2 3
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Thumbnail image")
        (proc-arg 0 "image-width" "Width of full-sized image")
        (proc-arg 0 "image-height" "Height of full-sized image"))
    (proc-def "file-ico-save" 1
         "Saves files in Windows ICO file format"
         "Saves files in Windows ICO file format"
         "Christian Kreibich <christian@whoop.org>"
         "Christian Kreibich <christian@whoop.org>"
         "2002"
         "Microsoft Windows icon"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "ico")
            (mime-type "image/x-ico"))
         "*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/sharpen" 1413468138
    (proc-def "plug-in-sharpen" 1
         "Make image sharper (less powerful than Unsharp Mask)"
         "This plug-in selectively performs a convolution filter on an image."
         "Michael Sweet <mike@easysw.com>"
         "Copyright 1997-1998 by Michael Sweet"
         "1.4.2 - 3 June 1998"
         "_Sharpen..."
         1
        (menu-path "<Image>/Filters/Enhance")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "percent" "Percent sharpening (default = 10)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/color-exchange" 1413468139
    (proc-def "plug-in-exchange" 1
         "Swap one color with another"
         "Exchange one color with another, optionally setting a threshold to convert from one shade to another"
         "robert@experimental.net"
         "robert@experimental.net"
         "June 17th, 1997"
         "_Color Exchange..."
         1
        (menu-path "<Image>/Colors/Map")
        (icon stock-id -1 "")
         "RGB*"
         12 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 2 "from-red" "Red value (from)")
        (proc-arg 2 "from-green" "Green value (from)")
        (proc-arg 2 "from-blue" "Blue value (from)")
        (proc-arg 2 "to-red" "Red value (to)")
        (proc-arg 2 "to-green" "Green value (to)")
        (proc-arg 2 "to-blue" "Blue value (to)")
        (proc-arg 2 "red-threshold" "Red threshold")
        (proc-arg 2 "green-threshold" "Green threshold")
        (proc-arg 2 "blue-threshold" "Blue threshold")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/border-average" 1413468132
    (proc-def "plug-in-borderaverage" 1
         "Set foreground to the average color of the image border"
         ""
         "Philipp Klaus"
         "Internet Access AG"
         "1998"
         "_Border Average..."
         1
        (menu-path "<Image>/Colors/Info")
        (icon stock-id -1 "")
         "RGB*"
         5 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "thickness" "Border size to take in count")
        (proc-arg 0 "bucket-exponent" "Bits for bucket size (default=4: 16 Levels)")
        (proc-arg 10 "borderaverage" "The average color of the specified border.")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/pixelize" 1413468140
    (proc-def "plug-in-pixelize" 1
         "Simplify image into an array of solid-colored squares"
         "Pixelize the contents of the specified drawable with specified pixelizing width."
         "Spencer Kimball & Peter Mattis, Tracy Scott, (ported to 1.0 by) Eiichi Takamori"
         "Spencer Kimball & Peter Mattis, Tracy Scott"
         "1995"
         "_Pixelize..."
         1
        (menu-path "<Image>/Filters/Blur")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "pixel-width" "Pixel width (the decrease in resolution)"))
    (proc-def "plug-in-pixelize2" 1
         "Pixelize the contents of the specified drawable"
         "Pixelize the contents of the specified drawable with speficied pixelizing width."
         "Spencer Kimball & Peter Mattis, Tracy Scott, (ported to 1.0 by) Eiichi Takamori"
         "Spencer Kimball & Peter Mattis, Tracy Scott"
         "2001"
         ""
         0
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "pixel-width" "Pixel width (the decrease in horizontal resolution)")
        (proc-arg 0 "pixel-height" "Pixel height (the decrease in vertical resolution)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-psd-load" 1413468136
    (proc-def "file-psd-load" 1
         "Loads images from the Photoshop PSD file format"
         "This plug-in loads images in Adobe Photoshop (TM) native PSD format."
         "John Marshall"
         "John Marshall"
         "2007"
         "Photoshop image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "psd")
            (magic "0,string,8BPS")
            (mime-type "image/x-psd")
            (thumb-loader "file-psd-load-thumb"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-psd-load-thumb" 1
         "Loads thumbnails from the Photoshop PSD file format"
         "This plug-in loads thumnail images from Adobe Photoshop (TM) native PSD format files."
         "John Marshall"
         "John Marshall"
         "2007"
         ""
         0
        (icon stock-id -1 "")
         ""
         2 3
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Thumbnail image")
        (proc-arg 0 "image-width" "Width of full-sized image")
        (proc-arg 0 "image-height" "Height of full-sized image")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/blur" 1413468132
    (proc-def "plug-in-blur" 1
         "Simple blur, fast but not very strong"
         "This plug-in blurs the specified drawable, using a 3x3 blur. Indexed images are not supported."
         "Miles O'Neal  <meo@rru.com>"
         "Miles O'Neal, Spencer Kimball, Peter Mattis, Torsten Martinsen, Brian Degenhardt, Federico Mena Quintero, Stephen Norris, Daniel Cotting"
         "1995-1998"
         "_Blur"
         1
        (menu-path "<Image>/Filters/Blur")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/contrast-normalize" 1413468135
    (proc-def "plug-in-normalize" 1
         "Stretch brightness values to cover the full range"
         "This plugin performs almost the same operation as the 'contrast autostretch' plugin, except that it won't allow the color channels to normalize independently.  This is actually what most people probably want instead of contrast-autostretch; use c-a only if you wish to remove an undesirable color-tint from a source image which is supposed to contain pure-white and pure-black."
         "Adam D. Moss, Federico Mena Quintero"
         "Adam D. Moss, Federico Mena Quintero"
         "1997"
         "_Normalize"
         1
        (menu-path "<Image>/Colors/Auto")
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-pdf-load" 1413468132
    (proc-def "file-pdf-load" 1
         "Load file in PDF format"
         "Loads files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript."
         "Nathan Summers"
         "Nathan Summers"
         "2005"
         "Portable Document Format"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "pdf")
            (magic "0, string,%PDF-")
            (mime-type "application/pdf")
            (thumb-loader "file-pdf-load-thumb"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-pdf-load-thumb" 1
         "Loads a preview from a PDF file."
         "Loads a small preview of the first page of the PDF format file. Uses the embedded thumbnail if present."
         "Nathan Summers"
         "Nathan Summers"
         "2005"
         ""
         0
        (icon stock-id -1 "")
         ""
         2 5
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Thumbnail image")
        (proc-arg 0 "image-width" "Width of full-sized image")
        (proc-arg 0 "image-height" "Height of full-sized image")
        (proc-arg 0 "image-type" "Image type")
        (proc-arg 0 "num-layers" "Number of pages")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/video" 1413468136
    (proc-def "plug-in-video" 1
         "Simulate distortion produced by a fuzzy or low-res monitor"
         "This function simulates the degradation of being on an old low-dotpitch RGB video monitor to the specified drawable."
         "Adam D. Moss (adam@foxbox.org)"
         "Adam D. Moss (adam@foxbox.org)"
         "2nd March 1997"
         "Vi_deo..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "pattern-number" "Type of RGB pattern to use")
        (proc-arg 0 "additive" "Whether the function adds the result to the original image")
        (proc-arg 0 "rotated" "Whether to rotate the RGB pattern by ninety degrees")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-gih" 1413468138
    (proc-def "file-gih-load" 1
         "loads images in GIMP brush pipe format"
         "This plug-in loads a GIMP brush pipe as an image."
         "Jens Lautenbacher, Sven Neumann"
         "Jens Lautenbacher, Sven Neumann"
         "2000"
         "GIMP brush (animated)"
         0
        (icon stock-id -1 "gimp-tool-paintbrush")
        (load-proc
            (extension "gih")
            (mime-type "image/x-gimp-gih"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-gih-save" 1
         "saves images in GIMP brush pipe format"
         "This plug-in saves an image in the GIMP brush pipe format. For a colored brush pipe, RGBA layers are used, otherwise the layers should be grayscale masks. The image can be multi-layered, and additionally the layers can be divided into a rectangular array of brushes."
         "Tor Lillqvist"
         "Tor Lillqvist"
         "1999"
         "GIMP brush (animated)"
         0
        (icon stock-id -1 "gimp-tool-paintbrush")
        (save-proc
            (extension "gih")
            (mime-type "image/x-gimp-gih"))
         "RGB*, GRAY*"
         15 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the brush pipe in")
        (proc-arg 4 "raw-filename" "The name of the file to save the brush pipe in")
        (proc-arg 0 "spacing" "Spacing of the brush")
        (proc-arg 4 "description" "Short description of the brush pipe")
        (proc-arg 0 "cell-width" "Width of the brush cells")
        (proc-arg 0 "cell-height" "Width of the brush cells")
        (proc-arg 2 "display-cols" "Display column number")
        (proc-arg 2 "display-rows" "Display row number")
        (proc-arg 0 "dimension" "Dimension of the brush pipe")
        (proc-arg 7 "rank" "Ranks of the dimensions")
        (proc-arg 0 "dimension" "Dimension (again)")
        (proc-arg 9 "sel" "Selection modes")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/sample-colorize" 1413468141
    (proc-def "plug-in-sample-colorize" 1
         "Colorize image using a sample image as a guide"
         "This plug-in colorizes the contents of the specified (gray) layer with the help of a  sample (color) layer. It analyzes all colors in the sample layer. The sample colors are sorted by brightness (== intentisty) and amount and stored in a sample colortable (where brightness is the index) The pixels of the destination layer are remapped with the help of the sample colortable. If use_subcolors is TRUE, the remapping process uses all sample colors of the corresponding brightness-intensity and distributes the subcolors according to their amount in the sample (If the sample has 5 green, 3 yellow, and 1 red pixel of the  intensity value 105, the destination pixels at intensity value 105 are randomly painted in green, yellow and red in a relation of 5:3:1 If use_subcolors is FALSE only one sample color per intensity is used. (green will be used in this example) The brightness intensity value is transformed at the remapping process according to the levels: out_lo, out_hi, in_lo, in_high and gamma The in_low / in_high levels specify an initial mapping of the intensity. The gamma value determines how intensities are interpolated between the in_lo and in_high levels. A gamma value of 1.0 results in linear interpolation. Higher gamma values results in more high-level intensities Lower gamma values results in more low-level intensities The out_low/out_high levels constrain the resulting intensity index The intensity index is used to pick the corresponding color in the sample colortable. If hold_inten is FALSE the picked color is used 1:1 as resulting remap_color. If hold_inten is TRUE The brightness of the picked color is adjusted back to the origial intensity value (only hue and saturation are taken from the picked sample color) (or to the input level, if orig_inten is set FALSE) Works on both Grayscale and RGB image with/without alpha channel. (the image with the dst_drawable is converted to RGB if necessary) The sample_drawable should be of type RGB or RGBA"
         "Wolfgang Hofer"
         "hof@hotbot.com"
         "02/2000"
         "_Sample Colorize..."
         1
        (menu-path "<Image>/Colors/Map")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         13 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "dst-drawable" "The drawable to be colorized (Type GRAY* or RGB*)")
        (proc-arg 16 "sample-drawable" "Sample drawable (should be of Type RGB or RGBA)")
        (proc-arg 0 "hold-inten" "hold brightness intensity levels (TRUE, FALSE)")
        (proc-arg 0 "orig-inten" "TRUE: hold brightness of original intensity levels. FALSE: Hold Intensity of input levels")
        (proc-arg 0 "rnd-subcolors" "TRUE: Use all subcolors of same intensity, FALSE: use only one color per intensity")
        (proc-arg 0 "guess-missing" "TRUE: guess samplecolors for the missing intensity values FALSE: use only colors found in the sample")
        (proc-arg 0 "in-low" "intensity of lowest input (0 <= in_low <= 254)")
        (proc-arg 0 "in-high" "intensity of highest input (1 <= in_high <= 255)")
        (proc-arg 3 "gamma" "gamma correction factor (0.1 <= gamma <= 10) where 1.0 is linear")
        (proc-arg 0 "out-low" "lowest sample color intensity (0 <= out_low <= 254)")
        (proc-arg 0 "out-high" "highest sample color intensity (1 <= out_high <= 255)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/color-to-alpha" 1413468136
    (proc-def "plug-in-colortoalpha" 1
         "Convert a specified color to transparency"
         "This replaces as much of a given color as possible in each pixel with a corresponding amount of alpha, then readjusts the color accordingly."
         "Seth Burgess"
         "Seth Burgess <sjburges@gimp.org>"
         "7th Aug 1999"
         "Color to _Alpha..."
         2
        (menu-path "<Image>/Colors/Modify")
        (menu-path "<Image>/Layer/Transparency/Modify")
        (icon stock-id -1 "")
         "RGB*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 10 "color" "Color to remove")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/cartoon" 1413468141
    (proc-def "plug-in-cartoon" 1
         "Simulate a cartoon by enhancing edges"
         "Propagates dark values in an image based on each pixel's relative darkness to a neighboring average. The idea behind this filter is to give the look of a black felt pen drawing subsequently shaded with color. This is achieved by darkening areas of the image which are measured to be darker than a neighborhood average. In this way, sufficiently large shifts in intensity are darkened to black. The rate at which they are darkened to black is determined by the second pct_black parameter. The mask_radius parameter controls the size of the pixel neighborhood over which the average intensity is computed and then compared to each pixel in the neighborhood to decide whether or not to darken it to black. Large values for mask_radius result in very thick black areas bordering the shaded regions of color and much less detail for black areas everywhere including inside regions of color. Small values result in more subtle pen strokes and detail everywhere. Small values for the pct_black make the blend from the color regions to the black border lines smoother and the lines themselves thinner and less noticable; larger values achieve the opposite effect."
         "Spencer Kimball"
         "Bit Specialists, Inc."
         "2001"
         "Ca_rtoon..."
         1
        (menu-path "<Image>/Filters/Artistic")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "mask-radius" "Cartoon mask radius (radius of pixel neighborhood)")
        (proc-arg 3 "pct-black" "Percentage of darkened pixels to set to black (0.0 - 1.0)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/nova" 1413468135
    (proc-def "plug-in-nova" 1
         "Add a starburst to the image"
         "This plug-in produces an effect like a supernova burst. The amount of the light effect is approximately in proportion to 1/r, where r is the distance from the center of the star. It works with RGB*, GRAY* image."
         "Eiichi Takamori"
         "Eiichi Takamori"
         "May 2000"
         "Super_nova..."
         1
        (menu-path "<Image>/Filters/Light and Shadow/Light")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         9 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "xcenter" "X coordinates of the center of supernova")
        (proc-arg 0 "ycenter" "Y coordinates of the center of supernova")
        (proc-arg 10 "color" "Color of supernova")
        (proc-arg 0 "radius" "Radius of supernova")
        (proc-arg 0 "nspoke" "Number of spokes")
        (proc-arg 0 "randomhue" "Random hue")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-jpeg" 1413468136
    (proc-def "file-jpeg-load" 1
         "loads files in the JPEG file format"
         "loads files in the JPEG file format"
         "Spencer Kimball, Peter Mattis & others"
         "Spencer Kimball & Peter Mattis"
         "1995-2007"
         "JPEG image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "jpg,jpeg,jpe")
            (magic "6,string,JFIF,6,string,Exif")
            (mime-type "image/jpeg")
            (thumb-loader "file-jpeg-load-thumb"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-jpeg-load-thumb" 1
         "Loads a thumbnail from a JPEG image"
         "Loads a thumbnail from a JPEG image (only if it exists)"
         "Mukund Sivaraman <muks@mukund.org>, Sven Neumann <sven@gimp.org>"
         "Mukund Sivaraman <muks@mukund.org>, Sven Neumann <sven@gimp.org>"
         "November 15, 2004"
         ""
         0
        (icon stock-id -1 "")
         ""
         2 3
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Thumbnail image")
        (proc-arg 0 "image-width" "Width of full-sized image")
        (proc-arg 0 "image-height" "Height of full-sized image"))
    (proc-def "file-jpeg-save" 1
         "saves files in the JPEG file format"
         "saves files in the lossy, widely supported JPEG format"
         "Spencer Kimball, Peter Mattis & others"
         "Spencer Kimball & Peter Mattis"
         "1995-2007"
         "JPEG image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "jpg,jpeg,jpe")
            (mime-type "image/jpeg"))
         "RGB*, GRAY*"
         14 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 3 "quality" "Quality of saved image (0 <= quality <= 1)")
        (proc-arg 3 "smoothing" "Smoothing factor for saved image (0 <= smoothing <= 1)")
        (proc-arg 0 "optimize" "Optimization of entropy encoding parameters (0/1)")
        (proc-arg 0 "progressive" "Enable progressive jpeg image loading (0/1)")
        (proc-arg 4 "comment" "Image comment")
        (proc-arg 0 "subsmp" "The subsampling option number")
        (proc-arg 0 "baseline" "Force creation of a baseline JPEG (non-baseline JPEGs can't be read by all decoders) (0/1)")
        (proc-arg 0 "restart" "Interval of restart markers (in MCU rows, 0 = no restart markers)")
        (proc-arg 0 "dct" "DCT algorithm to use (speed/quality tradeoff)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/oilify" 1413468136
    (proc-def "plug-in-oilify" 1
         "Smear colors to simulate an oil painting"
         "This function performs the well-known oil-paint effect on the specified drawable."
         "Torsten Martinsen"
         "Torsten Martinsen"
         "1996"
         "Oili_fy..."
         1
        (menu-path "<Image>/Filters/Artistic")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "mask-size" "Oil paint mask size")
        (proc-arg 0 "mode" "Algorithm { RGB (0), INTENSITY (1) }"))
    (proc-def "plug-in-oilify-enhanced" 1
         "Smear colors to simulate an oil painting"
         "This function performs the well-known oil-paint effect on the specified drawable."
         "Torsten Martinsen, Daniel Richard G."
         "Torsten Martinsen, Daniel Richard G."
         "2007"
         ""
         0
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         8 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "mode" "Algorithm { RGB (0), INTENSITY (1) }")
        (proc-arg 0 "mask-size" "Oil paint mask size")
        (proc-arg 16 "mask-size-map" "Mask size control map")
        (proc-arg 0 "exponent" "Oil paint exponent")
        (proc-arg 16 "exponent-map" "Exponent control map")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/crop-zealous" 1413468135
    (proc-def "plug-in-zealouscrop" 1
         "Autocrop unused space from edges and middle"
         ""
         "Adam D. Moss"
         "Adam D. Moss"
         "1997"
         "_Zealous Crop"
         1
        (menu-path "<Image>/Image/Crop")
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/diffraction" 1413468133
    (proc-def "plug-in-diffraction" 1
         "Generate diffraction patterns"
         "Help?  What help?  Real men do not need help :-)"
         "Federico Mena Quintero"
         "Federico Mena Quintero & David Bleecker"
         "April 1997, 0.5"
         "_Diffraction Patterns..."
         1
        (menu-path "<Image>/Filters/Render/Pattern")
        (icon stock-id -1 "")
         "RGB*"
         15 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "lam-r" "Light frequency (red)")
        (proc-arg 3 "lam-g" "Light frequency (green)")
        (proc-arg 3 "lam-b" "Light frequency (blue)")
        (proc-arg 3 "contour-r" "Number of contours (red)")
        (proc-arg 3 "contour-g" "Number of contours (green)")
        (proc-arg 3 "contour-b" "Number of contours (blue)")
        (proc-arg 3 "edges-r" "Number of sharp edges (red)")
        (proc-arg 3 "edges-g" "Number of sharp edges (green)")
        (proc-arg 3 "edges-b" "Number of sharp edges (blue)")
        (proc-arg 3 "brightness" "Brightness and shifting/fattening of contours")
        (proc-arg 3 "scattering" "Scattering (Speed vs. quality)")
        (proc-arg 3 "polarization" "Polarization")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/noise-spread" 1413468138
    (proc-def "plug-in-spread" 1
         "Move pixels around randomly"
         "Spreads the pixels of the specified drawable.  Pixels are randomly moved to another location whose distance varies from the original by the horizontal and vertical spread amounts "
         "Spencer Kimball and Peter Mattis, ported by Brian Degenhardt and Federico Mena Quintero"
         "Federico Mena Quintero and Brian Degenhardt"
         "1997"
         "Sp_read..."
         1
        (menu-path "<Image>/Filters/Noise")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "spread-amount-x" "Horizontal spread amount (0 <= spread_amount_x <= 200)")
        (proc-arg 3 "spread-amount-y" "Vertical spread amount (0 <= spread_amount_y <= 200)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/mosaic" 1413468138
    (proc-def "plug-in-mosaic" 1
         "Convert the image into irregular tiles"
         "Help not yet written for this plug-in"
         "Spencer Kimball"
         "Spencer Kimball & Peter Mattis"
         "1996"
         "_Mosaic..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         15 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "tile-size" "Average diameter of each tile (in pixels)")
        (proc-arg 3 "tile-height" "Apparent height of each tile (in pixels)")
        (proc-arg 3 "tile-spacing" "Inter-tile spacing (in pixels)")
        (proc-arg 3 "tile-neatness" "Deviation from perfectly formed tiles (0.0 - 1.0)")
        (proc-arg 0 "tile-allow-split" "Allows splitting tiles at hard edges")
        (proc-arg 3 "light-dir" "Direction of light-source (in degrees)")
        (proc-arg 3 "color-variation" "Magnitude of random color variations (0.0 - 1.0)")
        (proc-arg 0 "antialiasing" "Enables smoother tile output at the cost of speed")
        (proc-arg 0 "color-averaging" "Tile color based on average of subsumed pixels")
        (proc-arg 0 "tile-type" "Tile geometry { SQUARES (0), HEXAGONS (1), OCTAGONS (2), TRIANGLES (3) }")
        (proc-arg 0 "tile-surface" "Surface characteristics { SMOOTH (0), ROUGH (1) }")
        (proc-arg 0 "grout-color" "Grout color (black/white or fore/background) { BW (0), FG-BG (1) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/edge-laplace" 1413468132
    (proc-def "plug-in-laplace" 1
         "High-resolution edge detection"
         "This plugin creates one-pixel wide edges from the image, with the value proportional to the gradient. It uses the Laplace operator (a 3x3 kernel with -8 in the middle). The image has to be laplacered to get useful results, a gauss_iir with 1.5 - 5.0 depending on the noise in the image is best."
         "Thorsten Schnier"
         "Thorsten Schnier"
         "1997"
         "_Laplace"
         1
        (menu-path "<Image>/Filters/Edge-Detect")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-fits" 1413468133
    (proc-def "file-fits-load" 1
         "load file of the FITS file format"
         "load file of the FITS file format (Flexible Image Transport System)"
         "Peter Kirchgessner"
         "Peter Kirchgessner (peter@kirchgessner.net)"
         "1997"
         "Flexible Image Transport System"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "fit,fits")
            (magic "0,string,SIMPLE")
            (mime-type "image/x-fits"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-fits-save" 1
         "save file in the FITS file format"
         "FITS saving handles all image types except those with alpha channels."
         "Peter Kirchgessner"
         "Peter Kirchgessner (peter@kirchgessner.net)"
         "1997"
         "Flexible Image Transport System"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "fit,fits")
            (mime-type "image/x-fits"))
         "RGB, GRAY, INDEXED"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/pagecurl" 1413468138
    (proc-def "plug-in-pagecurl" 1
         "Curl up one of the image corners"
         "This plug-in creates a pagecurl-effect."
         "Federico Mena Quintero and Simon Budig"
         "Federico Mena Quintero and Simon Budig"
         "July 2004, 1.0"
         "_Pagecurl..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         7 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "colors" "FG- and BG-Color (0), Current gradient (1), Current gradient reversed (2)")
        (proc-arg 0 "edge" "Edge to curl (1-4, clockwise, starting in the lower right edge)")
        (proc-arg 0 "orientation" "Vertical (0), Horizontal (1)")
        (proc-arg 0 "shade" "Shade the region under the curl (1) or not (0)")
        (proc-arg 14 "Curl-Layer" "The new layer with the curl.")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-fli" 1413468135
    (proc-def "file-fli-load" 1
         "load FLI-movies"
         "This is an experimantal plug-in to handle FLI movies"
         "Jens Ch. Restemeier"
         "Jens Ch. Restemeier"
         "1997"
         "AutoDesk FLIC animation"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "fli,flc")
            (mime-type "image/x-flic"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-fli-save" 1
         "save FLI-movies"
         "This is an experimantal plug-in to handle FLI movies"
         "Jens Ch. Restemeier"
         "Jens Ch. Restemeier"
         "1997"
         "AutoDesk FLIC animation"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "fli,flc")
            (mime-type "image/x-flic"))
         "INDEXED,GRAY"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)")
        (proc-arg 4 "filename" "The name of the file to save")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 0 "from-frame" "Save beginning from this frame")
        (proc-arg 0 "to-frame" "End saving with this frame"))
    (proc-def "file-fli-info" 1
         "Get information about a Fli movie"
         "This is a experimantal plug-in to handle FLI movies"
         "Jens Ch. Restemeier"
         "Jens Ch. Restemeier"
         "1997"
         ""
         0
        (icon stock-id -1 "")
         ""
         1 3
        (proc-arg 4 "filename" "The name of the file to get info")
        (proc-arg 0 "width" "Width of one frame")
        (proc-arg 0 "height" "Height of one frame")
        (proc-arg 0 "frames" "Number of Frames")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/sphere-designer" 1413468135
    (proc-def "plug-in-spheredesigner" 1
         "Create an image of a textured sphere"
         "This plugin can be used to create textured and/or bumpmapped spheres, and uses a small lightweight raytracer to perform the task with good quality"
         "Vidar Madsen"
         "Vidar Madsen"
         "1999"
         "Sphere _Designer..."
         1
        (menu-path "<Image>/Filters/Render")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-gif-save" 1413468133
    (proc-def "file-gif-save" 1
         "saves files in Compuserve GIF file format"
         "Save a file in Compuserve GIF format, with possible animation, transparency, and comment.  To save an animation, operate on a multi-layer file.  The plug-in will intrepret <50% alpha as transparent.  When run non-interactively, the value for the comment is taken from the 'gimp-comment' parasite.  "
         "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas"
         "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas"
         "1995-1997"
         "GIF image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "gif")
            (mime-type "image/gif"))
         "INDEXED*, GRAY*"
         9 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Image to save")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 0 "interlace" "Try to save as interlaced")
        (proc-arg 0 "loop" "(animated gif) loop infinitely")
        (proc-arg 0 "default-delay" "(animated gif) Default delay between framese in milliseconds")
        (proc-arg 0 "default-dispose" "(animated gif) Default disposal type (0=`don't care`, 1=combine, 2=replace)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/film" 1413468135
    (proc-def "plug-in-film" 1
         "Combine several images on a film strip"
         "Compose several images to a roll film"
         "Peter Kirchgessner"
         "Peter Kirchgessner (peter@kirchgessner.net)"
         "1997"
         "_Filmstrip..."
         1
        (menu-path "<Image>/Filters/Combine")
        (icon stock-id -1 "")
         "INDEXED*, GRAY*, RGB*"
         12 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (only used as default image in interactive mode)")
        (proc-arg 16 "drawable" "Input drawable (not used)")
        (proc-arg 0 "film-height" "Height of film (0: fit to images)")
        (proc-arg 10 "film-color" "Color of the film")
        (proc-arg 0 "number-start" "Start index for numbering")
        (proc-arg 4 "number-font" "Font for drawing numbers")
        (proc-arg 10 "number-color" "Color for numbers")
        (proc-arg 0 "at-top" "Flag for drawing numbers at top of film")
        (proc-arg 0 "at-bottom" "Flag for drawing numbers at bottom of film")
        (proc-arg 0 "num-images" "Number of images to be used for film")
        (proc-arg 5 "image-ids" "num-images image IDs to be used for film")
        (proc-arg 13 "new-image" "Output image")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/max-rgb" 1413468140
    (proc-def "plug-in-max-rgb" 1
         "Reduce image to pure red, green, and blue"
         "There's no help yet."
         "Shuji Narazaki (narazaki@InetQ.or.jp)"
         "Shuji Narazaki"
         "May 2000"
         "Maxim_um RGB..."
         1
        (menu-path "<Image>/Colors/Modify")
        (icon stock-id -1 "")
         "RGB*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (not used)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "max-p" "{ MINIMIZE (0), MAXIMIZE (1) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/deinterlace" 1413468136
    (proc-def "plug-in-deinterlace" 1
         "Fix images where every other row is missing"
         "Deinterlace is useful for processing images from video capture cards. When only the odd or even fields get captured, deinterlace can be used to interpolate between the existing fields to correct this."
         "Andrew Kieschnick"
         "Andrew Kieschnick"
         "1997"
         "_Deinterlace..."
         1
        (menu-path "<Image>/Filters/Enhance")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "evenodd" "Which lines to keep { KEEP-ODD (0), KEEP-EVEN (1) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/map-object" 1413468141
    (proc-def "plug-in-map-object" 1
         "Map the image to an object (plane, sphere, box or cylinder)"
         "No help yet"
         "Tom Bech & Federico Mena Quintero"
         "Tom Bech & Federico Mena Quintero"
         "Version 1.2.0, July 16 1998"
         "Map _Object..."
         1
        (menu-path "<Image>/Filters/Map")
        (icon stock-id -1 "")
         "RGB*"
         49 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "maptype" "Type of mapping (0=plane,1=sphere,2=box,3=cylinder)")
        (proc-arg 3 "viewpoint-x" "Position of viewpoint (x,y,z)")
        (proc-arg 3 "viewpoint-y" "Position of viewpoint (x,y,z)")
        (proc-arg 3 "viewpoint-z" "Position of viewpoint (x,y,z)")
        (proc-arg 3 "position-x" "Object position (x,y,z)")
        (proc-arg 3 "position-y" "Object position (x,y,z)")
        (proc-arg 3 "position-z" "Object position (x,y,z)")
        (proc-arg 3 "firstaxis-x" "First axis of object [x,y,z]")
        (proc-arg 3 "firstaxis-y" "First axis of object [x,y,z]")
        (proc-arg 3 "firstaxis-z" "First axis of object [x,y,z]")
        (proc-arg 3 "secondaxis-x" "Second axis of object [x,y,z]")
        (proc-arg 3 "secondaxis-y" "Second axis of object [x,y,z]")
        (proc-arg 3 "secondaxis-z" "Second axis of object [x,y,z]")
        (proc-arg 3 "rotationangle-x" "Rotation about X axis in degrees")
        (proc-arg 3 "rotationangle-y" "Rotation about Y axis in degrees")
        (proc-arg 3 "rotationangle-z" "Rotation about Z axis in degrees")
        (proc-arg 0 "lighttype" "Type of lightsource (0=point,1=directional,2=none)")
        (proc-arg 10 "lightcolor" "Lightsource color (r,g,b)")
        (proc-arg 3 "lightposition-x" "Lightsource position (x,y,z)")
        (proc-arg 3 "lightposition-y" "Lightsource position (x,y,z)")
        (proc-arg 3 "lightposition-z" "Lightsource position (x,y,z)")
        (proc-arg 3 "lightdirection-x" "Lightsource direction [x,y,z]")
        (proc-arg 3 "lightdirection-y" "Lightsource direction [x,y,z]")
        (proc-arg 3 "lightdirection-z" "Lightsource direction [x,y,z]")
        (proc-arg 3 "ambient-intensity" "Material ambient intensity (0..1)")
        (proc-arg 3 "diffuse-intensity" "Material diffuse intensity (0..1)")
        (proc-arg 3 "diffuse-reflectivity" "Material diffuse reflectivity (0..1)")
        (proc-arg 3 "specular-reflectivity" "Material specular reflectivity (0..1)")
        (proc-arg 3 "highlight" "Material highlight (0..->), note: it's expotential")
        (proc-arg 0 "antialiasing" "Apply antialiasing (TRUE/FALSE)")
        (proc-arg 0 "tiled" "Tile source image (TRUE/FALSE)")
        (proc-arg 0 "newimage" "Create a new image (TRUE/FALSE)")
        (proc-arg 0 "transparentbackground" "Make background transparent (TRUE/FALSE)")
        (proc-arg 3 "radius" "Sphere/cylinder radius (only used when maptype=1 or 3)")
        (proc-arg 3 "x-scale" "Box x size (0..->)")
        (proc-arg 3 "y-scale" "Box y size (0..->)")
        (proc-arg 3 "z-scale" "Box z size (0..->)")
        (proc-arg 3 "cylinder-length" "Cylinder length (0..->)")
        (proc-arg 16 "box-front-drawable" "Box front face (set these to -1 if not used)")
        (proc-arg 16 "box-back-drawable" "Box back face")
        (proc-arg 16 "box-top-drawable" "Box top face")
        (proc-arg 16 "box-bottom-drawable" "Box bottom face")
        (proc-arg 16 "box-left-drawable" "Box left face")
        (proc-arg 16 "box-right-drawable" "Box right face")
        (proc-arg 16 "cyl-top-drawable" "Cylinder top face (set these to -1 if not used)")
        (proc-arg 16 "cyl-bottom-drawable" "Cylinder bottom face")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/whirl-pinch" 1413468136
    (proc-def "plug-in-whirl-pinch" 1
         "Distort an image by whirling and pinching"
         "Distorts the image by whirling and pinching, which are two common center-based, circular distortions.  Whirling is like projecting the image onto the surface of water in a toilet and flushing.  Pinching is similar to projecting the image onto an elastic surface and pressing or pulling on the center of the surface."
         "Federico Mena Quintero and Scott Goehring"
         "Federico Mena Quintero and Scott Goehring"
         "May 1997, 2.09"
         "W_hirl and Pinch..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "whirl" "Whirl angle (degrees)")
        (proc-arg 3 "pinch" "Pinch amount")
        (proc-arg 3 "radius" "Radius (1.0 is the largest circle that fits in the image, and 2.0 goes all the way to the corners)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/tile-seamless" 1413468135
    (proc-def "plug-in-make-seamless" 1
         "Alters edges to make the image seamlessly tileable"
         "This plugin creates a seamless tileable from the input drawable"
         "Tim Rowley"
         "Tim Rowley"
         "1997"
         "_Make Seamless"
         1
        (menu-path "<Image>/Filters/Map")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/align-layers" 1413468137
    (proc-def "plug-in-align-layers" 1
         "Align all visible layers of the image"
         "Align visible layers"
         "Shuji Narazaki <narazaki@InetQ.or.jp>"
         "Shuji Narazaki"
         "1997"
         "Align Visi_ble Layers..."
         1
        (menu-path "<Image>/Image/Arrange")
        (icon stock-id -1 "")
         "RGB*,GRAY*,INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (not used)")
        (proc-arg 0 "link-after-alignment" "Link the visible layers after alignment { TRUE, FALSE }")
        (proc-arg 0 "use-bottom" "use the bottom layer as the base of alignment { TRUE, FALSE }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/tile-small" 1413468138
    (proc-def "plug-in-small-tiles" 1
         "Tile image into smaller versions of the original"
         "More here later"
         "Andy Thomas"
         "Andy Thomas"
         "1997"
         "_Small Tiles..."
         1
        (menu-path "<Image>/Filters/Map")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "num-tiles" "Number of tiles to make")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/gimpressionist" 1413468141
    (proc-def "plug-in-gimpressionist" 1
         "Performs various artistic operations"
         "Performs various artistic operations on an image"
         "Vidar Madsen <vidar@prosalg.no>"
         "Vidar Madsen"
         "v1.0, November 2003"
         "_GIMPressionist..."
         1
        (menu-path "<Image>/Filters/Artistic")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "preset" "Preset Name")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-desktop-link" 1413468140
    (proc-def "file-desktop-link-load" 1
         "Follows a link to an image in a .desktop file"
         "Opens a .desktop file and if it is a link, it asks GIMP to open the file the link points to."
         "Sven Neumann"
         "Sven Neumann"
         "2006"
         "Desktop Link"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "desktop"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-gbr" 1413468140
    (proc-def "file-gbr-load" 1
         "Loads GIMP brushes"
         "Loads GIMP brushes (1 or 4 bpp and old .gpb format)"
         "Tim Newsome, Jens Lautenbacher, Sven Neumann"
         "Tim Newsome, Jens Lautenbacher, Sven Neumann"
         "1997-2005"
         "GIMP brush"
         0
        (icon stock-id -1 "gimp-tool-paintbrush")
        (load-proc
            (extension "gbr, gpb")
            (magic "20, string, GIMP")
            (mime-type "image/x-gimp-gbr"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-gbr-save" 1
         "Saves files in the GIMP brush file format"
         "Saves files in the GIMP brush file format"
         "Tim Newsome, Jens Lautenbacher, Sven Neumann"
         "Tim Newsome, Jens Lautenbacher, Sven Neumann"
         "1997-2000"
         "GIMP brush"
         0
        (icon stock-id -1 "gimp-tool-paintbrush")
        (save-proc
            (extension "gbr")
            (mime-type "image/x-gimp-gbr"))
         "RGB*, GRAY*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "spacing" "Spacing of the brush")
        (proc-arg 4 "description" "Short description of the brush")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/newsprint" 1413468132
    (proc-def "plug-in-newsprint" 1
         "Halftone the image to give newspaper-like effect"
         "Halftone the image, trading off resolution to represent colors or grey levels using the process described both in the PostScript language definition, and also by Robert Ulichney, \"Digital halftoning\", MIT Press, 1987."
         "Austin Donnelly"
         "Austin Donnelly"
         "1998 (v0.60)"
         "Newsprin_t..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         15 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "cell-width" "Screen cell width in pixels")
        (proc-arg 0 "colorspace" "Separate to { GRAYSCALE (0), RGB (1), CMYK (2), LUMINANCE (3) }")
        (proc-arg 0 "k-pullout" "Percentage of black to pullout (CMYK only)")
        (proc-arg 3 "gry-ang" "Grey/black screen angle (degrees)")
        (proc-arg 0 "gry-spotfn" "Grey/black spot function { DOTS (0), LINES (1), DIAMONDS (2), EUCLIDIAN-DOT (3), PS-DIAMONDS (4) }")
        (proc-arg 3 "red-ang" "Red/cyan screen angle (degrees)")
        (proc-arg 0 "red-spotfn" "Red/cyan spot function (values as gry-spotfn)")
        (proc-arg 3 "grn-ang" "Green/magenta screen angle (degrees)")
        (proc-arg 0 "grn-spotfn" "Green/magenta spot function (values as gry-spotfn)")
        (proc-arg 3 "blu-ang" "Blue/yellow screen angle (degrees)")
        (proc-arg 0 "blu-spotfn" "Blue/yellow spot function (values as gry-spotfn)")
        (proc-arg 0 "oversample" "how many times to oversample spot fn")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/crop-auto" 1413468135
    (proc-def "plug-in-autocrop" 1
         "Remove empty borders from the image"
         "Crop the active layer of the input \"image\" based on empty borders of the input \"drawable\". The input drawable serves as a base for detecting cropping extents (transparency or background color), and is not necessarily the cropped layer (the current active layer)."
         "Tim Newsome"
         "Tim Newsome"
         "1997"
         "Autocrop Imag_e"
         1
        (menu-path "<Image>/Image/Crop")
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable"))
    (proc-def "plug-in-autocrop-layer" 1
         "Remove empty borders from the layer"
         ""
         "Tim Newsome"
         "Tim Newsome"
         "1997"
         "Autocrop Lay_er"
         1
        (menu-path "<Image>/Layer/Crop")
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/cubism" 1413468139
    (proc-def "plug-in-cubism" 1
         "Convert the image into randomly rotated square blobs"
         "Help not yet written for this plug-in"
         "Spencer Kimball & Tracy Scott"
         "Spencer Kimball & Tracy Scott"
         "1996"
         "_Cubism..."
         1
        (menu-path "<Image>/Filters/Artistic")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "tile-size" "Average diameter of each tile (in pixels)")
        (proc-arg 3 "tile-saturation" "Expand tiles by this amount")
        (proc-arg 0 "bg-color" "Background color { BLACK (0), BG (1) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/nl-filter" 1413468140
    (proc-def "plug-in-nlfilt" 1
         "Nonlinear swiss army knife filter"
         "This is the pnmnlfilt, in gimp's clothing.  See the pnmnlfilt manpage for details."
         "Graeme W. Gill, gimp 0.99 plugin by Eric L. Hernes"
         "Graeme W. Gill, Eric L. Hernes"
         "1997"
         "_NL Filter..."
         1
        (menu-path "<Image>/Filters/Enhance")
        (icon stock-id -1 "")
         "RGB,GRAY"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "img" "The Image to Filter")
        (proc-arg 16 "drw" "The Drawable")
        (proc-arg 3 "alpha" "The amount of the filter to apply")
        (proc-arg 3 "radius" "The filter radius")
        (proc-arg 0 "filter" "The Filter to Run, 0 - alpha trimmed mean; 1 - optimal estimation (alpha controls noise variance); 2 - edge enhancement")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-pix" 1413468138
    (proc-def "file-pix-load" 1
         "loads files of the Alias|Wavefront Pix file format"
         "loads files of the Alias|Wavefront Pix file format"
         "Michael Taylor"
         "Michael Taylor"
         "1997"
         "Alias Pix image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "pix,matte,mask,alpha,als"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-pix-save" 1
         "save file in the Alias|Wavefront pix/matte file format"
         "save file in the Alias|Wavefront pix/matte file format"
         "Michael Taylor"
         "Michael Taylor"
         "1997"
         "Alias Pix image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "pix,matte,mask,alpha,als"))
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/illusion" 1413468134
    (proc-def "plug-in-illusion" 1
         "Superimpose many altered copies of the image"
         "produce illusion"
         "Hirotsuna Mizuno <s1041150@u-aizu.ac.jp>"
         "Hirotsuna Mizuno"
         "v0.8 (May 14 2000)"
         "_Illusion..."
         1
        (menu-path "<Image>/Filters/Map")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "division" "The number of divisions")
        (proc-arg 0 "type" "Illusion type { TYPE1 (0), TYPE2 (1) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/blinds" 1413468140
    (proc-def "plug-in-blinds" 1
         "Simulate an image painted on window blinds"
         "More here later"
         "Andy Thomas"
         "Andy Thomas"
         "1997"
         "_Blinds..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "angle-dsp" "Angle of Displacement")
        (proc-arg 0 "num-segments" "Number of segments in blinds")
        (proc-arg 0 "orientation" "The orientation { ORIENTATION-HORIZONTAL (0), ORIENTATION-VERTICAL (1) }")
        (proc-arg 0 "bg-transparent" "Background transparent { FALSE, TRUE }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/waves" 1413468140
    (proc-def "plug-in-waves" 1
         "Distort the image with waves"
         "none yet"
         "Eric L. Hernes, Stephen Norris"
         "Stephen Norris"
         "1997"
         "_Waves..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         8 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "The Image")
        (proc-arg 16 "drawable" "The Drawable")
        (proc-arg 3 "amplitude" "The Amplitude of the Waves")
        (proc-arg 3 "phase" "The Phase of the Waves")
        (proc-arg 3 "wavelength" "The Wavelength of the Waves")
        (proc-arg 0 "type" "Type of waves, black/smeared")
        (proc-arg 0 "reflective" "Use Reflection")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/destripe" 1413468138
    (proc-def "plug-in-destripe" 1
         "Remove vertical stripe artifacts from the image"
         "This plug-in tries to remove vertical stripes from an image."
         "Marc Lehmann <pcg@goof.com>"
         "Marc Lehmann <pcg@goof.com>"
         "0.2"
         "Des_tripe..."
         1
        (menu-path "<Image>/Filters/Enhance")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "avg-width" "Averaging filter width (default = 36)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-ps" 1413468139
    (proc-def "file-ps-load" 1
         "load PostScript documents"
         "load PostScript documents"
         "Peter Kirchgessner <peter@kirchgessner.net>"
         "Peter Kirchgessner"
         "v1.17  19-Sep-2004"
         "PostScript document"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "ps")
            (magic "0,string,%!,0,long,0xc5d0d3c6")
            (mime-type "application/postscript")
            (thumb-loader "file-ps-load-thumb"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-eps-load" 1
         "load Encapsulated PostScript images"
         "load Encapsulated PostScript images"
         "Peter Kirchgessner <peter@kirchgessner.net>"
         "Peter Kirchgessner"
         "v1.17  19-Sep-2004"
         "Encapsulated PostScript image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "eps")
            (magic "0,string,%!,0,long,0xc5d0d3c6")
            (mime-type "image/x-eps")
            (thumb-loader "file-ps-load-thumb"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-ps-load-setargs" 1
         "set additional parameters for procedure file-ps-load"
         "set additional parameters for procedure file-ps-load"
         "Peter Kirchgessner <peter@kirchgessner.net>"
         "Peter Kirchgessner"
         "v1.17  19-Sep-2004"
         ""
         0
        (icon stock-id -1 "")
         ""
         8 0
        (proc-arg 0 "resolution" "Resolution to interprete image (dpi)")
        (proc-arg 0 "width" "Desired width")
        (proc-arg 0 "height" "Desired height")
        (proc-arg 0 "check-bbox" "0: Use width/height, 1: Use BoundingBox")
        (proc-arg 4 "pages" "Pages to load (e.g.: 1,3,5-7)")
        (proc-arg 0 "coloring" "4: b/w, 5: grey, 6: colour image, 7: automatic")
        (proc-arg 0 "text-alpha-bits" "1, 2, or 4")
        (proc-arg 0 "graphic-alpha-bits" "1, 2, or 4"))
    (proc-def "file-ps-load-thumb" 1
         "Loads a small preview from a PostScript or PDF document"
         ""
         "Peter Kirchgessner <peter@kirchgessner.net>"
         "Peter Kirchgessner"
         "v1.17  19-Sep-2004"
         ""
         0
        (icon stock-id -1 "")
         ""
         2 1
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-ps-save" 1
         "save image as PostScript docuement"
         "PostScript saving handles all image types except those with alpha channels."
         "Peter Kirchgessner <peter@kirchgessner.net>"
         "Peter Kirchgessner"
         "v1.17  19-Sep-2004"
         "PostScript document"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "ps")
            (mime-type "application/postscript"))
         "RGB, GRAY, INDEXED"
         15 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 3 "width" "Width of the image in PostScript file (0: use input image size)")
        (proc-arg 3 "height" "Height of image in PostScript file (0: use input image size)")
        (proc-arg 3 "x-offset" "X-offset to image from lower left corner")
        (proc-arg 3 "y-offset" "Y-offset to image from lower left corner")
        (proc-arg 0 "unit" "Unit for width/height/offset. 0: inches, 1: millimeters")
        (proc-arg 0 "keep-ratio" "0: use width/height, 1: keep aspect ratio")
        (proc-arg 0 "rotation" "0, 90, 180, 270")
        (proc-arg 0 "eps-flag" "0: PostScript, 1: Encapsulated PostScript")
        (proc-arg 0 "preview" "0: no preview, >0: max. size of preview")
        (proc-arg 0 "level" "1: PostScript Level 1, 2: PostScript Level 2"))
    (proc-def "file-eps-save" 1
         "save image as Encapsulated PostScript image"
         "PostScript saving handles all image types except those with alpha channels."
         "Peter Kirchgessner <peter@kirchgessner.net>"
         "Peter Kirchgessner"
         "v1.17  19-Sep-2004"
         "Encapsulated PostScript image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "eps")
            (mime-type "application/x-eps"))
         "RGB, GRAY, INDEXED"
         15 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 3 "width" "Width of the image in PostScript file (0: use input image size)")
        (proc-arg 3 "height" "Height of image in PostScript file (0: use input image size)")
        (proc-arg 3 "x-offset" "X-offset to image from lower left corner")
        (proc-arg 3 "y-offset" "Y-offset to image from lower left corner")
        (proc-arg 0 "unit" "Unit for width/height/offset. 0: inches, 1: millimeters")
        (proc-arg 0 "keep-ratio" "0: use width/height, 1: keep aspect ratio")
        (proc-arg 0 "rotation" "0, 90, 180, 270")
        (proc-arg 0 "eps-flag" "0: PostScript, 1: Encapsulated PostScript")
        (proc-arg 0 "preview" "0: no preview, >0: max. size of preview")
        (proc-arg 0 "level" "1: PostScript Level 1, 2: PostScript Level 2")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/gfig" 1413468141
    (proc-def "plug-in-gfig" 1
         "Create geometric shapes"
         "Draw Vector Graphics and paint them onto your images.  Gfig allows you to draw many types of objects including Lines, Circles, Ellipses, Curves, Polygons, pointed stars, Bezier curves, and Spirals.  Objects can be painted using Brushes or other toolsor filled using colours or patterns.  Gfig objects can also be used to create selections.  "
         "Andy Thomas"
         "Andy Thomas"
         "1997"
         "_Gfig..."
         1
        (menu-path "<Image>/Filters/Render")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "dummy" "dummy")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-raw" 1413468134
    (proc-def "file-raw-load" 1
         "Load raw images, specifying image information"
         "Load raw images, specifying image information"
         "timecop, pg@futureware.at"
         "timecop, pg@futureware.at"
         "Aug 2004"
         "Raw image data"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "data"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-save" 1
         "Dump images to disk in raw format"
         "Dump images to disk in raw format"
         "timecop, pg@futureware.at"
         "timecop, pg@futureware.at"
         "Aug 2004"
         "Raw image data"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "data"))
         "INDEXED, GRAY, RGB, RGBA"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/convolution-matrix" 1413468133
    (proc-def "plug-in-convmatrix" 1
         "Apply a generic 5x5 convolution matrix"
         ""
         "Lauri Alanko"
         "Lauri Alanko"
         "1997"
         "_Convolution Matrix..."
         1
        (menu-path "<Image>/Filters/Generic")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         11 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "argc-matrix" "The number of elements in the following array. Should be always 25.")
        (proc-arg 8 "matrix" "The 5x5 convolution matrix")
        (proc-arg 0 "alpha-alg" "Enable weighting by alpha channel")
        (proc-arg 3 "divisor" "Divisor")
        (proc-arg 3 "offset" "Offset")
        (proc-arg 0 "argc-channels" "The number of elements in following array. Should be always 5.")
        (proc-arg 5 "channels" "Mask of the channels to be filtered")
        (proc-arg 0 "bmode" "Mode for treating image borders { EXTEND (0), WRAP (1), CLEAR (2) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-pcx" 1413468139
    (proc-def "file-pcx-load" 1
         "Loads files in Zsoft PCX file format"
         "FIXME: write help for pcx_load"
         "Francisco Bustamante & Nick Lamb"
         "Nick Lamb <njl195@zepler.org.uk>"
         "January 1997"
         "ZSoft PCX image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "pcx,pcc")
            (magic "0&,byte,10,2&,byte,1,3&,byte,>0,3,byte,<9")
            (mime-type "image/x-pcx"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-pcx-save" 1
         "Saves files in ZSoft PCX file format"
         "FIXME: write help for pcx_save"
         "Francisco Bustamante & Nick Lamb"
         "Nick Lamb <njl195@zepler.org.uk>"
         "January 1997"
         "ZSoft PCX image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "pcx,pcc")
            (mime-type "image/x-pcx"))
         "INDEXED, RGB, GRAY"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/smooth-palette" 1413468140
    (proc-def "plug-in-smooth-palette" 1
         "Derive a smooth color palette from the image"
         "help!"
         "Scott Draves"
         "Scott Draves"
         "1997"
         "Smoo_th Palette..."
         1
        (menu-path "<Image>/Colors/Info")
        (icon stock-id -1 "")
         "RGB*"
         7 2
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "width" "Width")
        (proc-arg 0 "height" "Height")
        (proc-arg 0 "ntries" "Search Depth")
        (proc-arg 0 "show-image" "Show Image?")
        (proc-arg 13 "new-image" "Output image")
        (proc-arg 14 "new-layer" "Output layer")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/color-cube-analyze" 1413468141
    (proc-def "plug-in-ccanalyze" 1
         "Analyze the set of colors in the image"
         "Analyze colorcube and print some information about the current image (also displays a color-histogram)"
         "robert@experimental.net"
         "robert@experimental.net"
         "June 20th, 1997"
         "Colorcube A_nalysis..."
         1
        (menu-path "<Image>/Colors/Info")
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED*"
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "num-colors" "Number of colors in the image")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/maze" 1413468134
    (proc-def "plug-in-maze" 1
         "Draw a labyrinth"
         "Generates a maze using either the depth-first search method or Prim's algorithm.  Can make tileable mazes too."
         "Kevin Turner <kevint@poboxes.com>"
         "Kevin Turner"
         "1997, 1998"
         "_Maze..."
         1
        (menu-path "<Image>/Filters/Render/Pattern")
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED*"
         10 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "(unused)")
        (proc-arg 16 "drawable" "ID of drawable")
        (proc-arg 1 "width" "Width of the passages")
        (proc-arg 1 "height" "Height of the passages")
        (proc-arg 2 "tileable" "Tileable maze?")
        (proc-arg 2 "algorithm" "Generation algorithm(0=DEPTH FIRST, 1=PRIM'S ALGORITHM)")
        (proc-arg 0 "seed" "Random Seed")
        (proc-arg 1 "multiple" "Multiple (use 57)")
        (proc-arg 1 "offset" "Offset (use 1)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-psp" 1413468139
    (proc-def "file-psp-load" 1
         "loads images from the Paint Shop Pro PSP file format"
         "This plug-in loads and saves images in Paint Shop Pro's native PSP format. Vector layers aren't handled. Saving isn't yet implemented."
         "Tor Lillqvist"
         "Tor Lillqvist"
         "1999"
         "Paint Shop Pro image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "psp,tub,pspimage")
            (magic "0,string,Paint\\040Shop\\040Pro\\040Image\\040File\n\032")
            (mime-type "image/x-psp"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-pat" 1413468134
    (proc-def "file-pat-load" 1
         "Loads Gimp's .PAT pattern files"
         "The images in the pattern dialog can be loaded directly with this plug-in"
         "Tim Newsome"
         "Tim Newsome"
         "1997"
         "GIMP pattern"
         0
        (icon stock-id -1 "gimp-tool-bucket-fill")
        (load-proc
            (extension "pat")
            (magic "20,string,GPAT")
            (mime-type "image/x-gimp-pat"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-pat-save" 1
         "Saves Gimp pattern file (.PAT)"
         "New Gimp patterns can be created by saving them in the appropriate place with this plug-in."
         "Tim Newsome"
         "Tim Newsome"
         "1997"
         "GIMP pattern"
         0
        (icon stock-id -1 "gimp-tool-bucket-fill")
        (save-proc
            (extension "pat")
            (mime-type "image/x-gimp-pat"))
         "RGB*, GRAY*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 4 "description" "Short description of the pattern")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/palette-offset.py" 1413468057
    (proc-def "python-fu-palette-offset" 1
         "Offset the colors in a palette"
         "palette_offset (palette, amount) -> modified_palette"
         "Joao S. O. Bueno Calligaris, Carol Spears"
         "(c) Joao S. O. Bueno Calligaris"
         "2004, 2006"
         "_Offset Palette..."
         1
        (menu-path "<Palettes>")
        (icon stock-id -1 "")
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "palette" "Palette")
        (proc-arg 0 "amount" "Offset")
        (proc-arg 4 "new-palette" "Result"))
    (locale-def "gimp20-python" "/usr/share/locale"))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/noise-hsv" 1413468134
    (proc-def "plug-in-hsv-noise" 1
         "Randomize hue/saturation/value independently"
         "Scattering pixel values in HSV space"
         "Shuji Narazaki (narazaki@InetQ.or.jp)"
         "Shuji Narazaki"
         "1997"
         "HSV Noise..."
         1
        (menu-path "<Image>/Filters/Noise")
        (icon stock-id -1 "")
         "RGB*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (not used)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "holdness" "convolution strength")
        (proc-arg 0 "hue-distance" "scattering of hue angle [0,180]")
        (proc-arg 0 "saturation-distance" "distribution distance on saturation axis [0,255]")
        (proc-arg 0 "value-distance" "distribution distance on value axis [0,255]"))
    (proc-def "plug-in-scatter-hsv" 1
         "Scattering pixel values in HSV space"
         "Scattering pixel values in HSV space"
         "Shuji Narazaki (narazaki@InetQ.or.jp)"
         "Shuji Narazaki"
         "1997"
         ""
         0
        (icon stock-id -1 "")
         "RGB*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (not used)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "holdness" "convolution strength")
        (proc-arg 0 "hue-distance" "scattering of hue angle [0,180]")
        (proc-arg 0 "saturation-distance" "distribution distance on saturation axis [0,255]")
        (proc-arg 0 "value-distance" "distribution distance on value axis [0,255]")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/grid" 1413468134
    (proc-def "plug-in-grid" 1
         "Draw a grid on the image"
         "Draws a grid using the specified colors. The grid origin is the upper left corner."
         "Tim Newsome"
         "Tim Newsome, Sven Neumann, Tom Rathborne, TC"
         "1997 - 2000"
         "_Grid..."
         1
        (menu-path "<Image>/Filters/Render/Pattern")
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED*"
         18 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "hwidth" "Horizontal Width   (>= 0)")
        (proc-arg 0 "hspace" "Horizontal Spacing (>= 1)")
        (proc-arg 0 "hoffset" "Horizontal Offset  (>= 0)")
        (proc-arg 10 "hcolor" "Horizontal Colour")
        (proc-arg 2 "hopacity" "Horizontal Opacity (0...255)")
        (proc-arg 0 "vwidth" "Vertical Width   (>= 0)")
        (proc-arg 0 "vspace" "Vertical Spacing (>= 1)")
        (proc-arg 0 "voffset" "Vertical Offset  (>= 0)")
        (proc-arg 10 "vcolor" "Vertical Colour")
        (proc-arg 2 "vopacity" "Vertical Opacity (0...255)")
        (proc-arg 0 "iwidth" "Intersection Width   (>= 0)")
        (proc-arg 0 "ispace" "Intersection Spacing (>= 0)")
        (proc-arg 0 "ioffset" "Intersection Offset  (>= 0)")
        (proc-arg 10 "icolor" "Intersection Colour")
        (proc-arg 2 "iopacity" "Intersection Opacity (0...255)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/noise-randomize" 1413468133
    (proc-def "plug-in-randomize-hurl" 1
         "Completely randomize a fraction of pixels"
         "This plug-in ``hurls'' randomly-valued pixels onto the selection or image.  You may select the percentage of pixels to modify and the number of times to repeat the process."
         "Miles O'Neal  <meo@rru.com>"
         "Miles O'Neal, Spencer Kimball, Peter Mattis, Torsten Martinsen, Brian Degenhardt, Federico Mena Quintero, Stephen Norris, Daniel Cotting"
         "1995-1998"
         "_Hurl..."
         1
        (menu-path "<Image>/Filters/Noise")
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "rndm-pct" "Randomization percentage (1.0 - 100.0)")
        (proc-arg 3 "rndm-rcount" "Repeat count (1.0 - 100.0)")
        (proc-arg 0 "randomize" "Use random seed { TRUE, FALSE }")
        (proc-arg 0 "seed" "Seed value (used only if randomize is FALSE)"))
    (proc-def "plug-in-randomize-pick" 1
         "Randomly interchange some pixels with neighbors"
         "This plug-in replaces a pixel with a random adjacent pixel.  You may select the percentage of pixels to modify and the number of times to repeat the process."
         "Miles O'Neal  <meo@rru.com>"
         "Miles O'Neal, Spencer Kimball, Peter Mattis, Torsten Martinsen, Brian Degenhardt, Federico Mena Quintero, Stephen Norris, Daniel Cotting"
         "1995-1998"
         "_Pick..."
         1
        (menu-path "<Image>/Filters/Noise")
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "rndm-pct" "Randomization percentage (1.0 - 100.0)")
        (proc-arg 3 "rndm-rcount" "Repeat count (1.0 - 100.0)")
        (proc-arg 0 "randomize" "Use random seed { TRUE, FALSE }")
        (proc-arg 0 "seed" "Seed value (used only if randomize is FALSE)"))
    (proc-def "plug-in-randomize-slur" 1
         "Randomly slide some pixels downward (similar to melting)"
         "This plug-in slurs (melts like a bunch of icicles) an image.  You may select the percentage of pixels to modify and the number of times to repeat the process."
         "Miles O'Neal  <meo@rru.com>"
         "Miles O'Neal, Spencer Kimball, Peter Mattis, Torsten Martinsen, Brian Degenhardt, Federico Mena Quintero, Stephen Norris, Daniel Cotting"
         "1995-1998"
         "_Slur..."
         1
        (menu-path "<Image>/Filters/Noise")
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "rndm-pct" "Randomization percentage (1.0 - 100.0)")
        (proc-arg 3 "rndm-rcount" "Repeat count (1.0 - 100.0)")
        (proc-arg 0 "randomize" "Use random seed { TRUE, FALSE }")
        (proc-arg 0 "seed" "Seed value (used only if randomize is FALSE)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/blur-motion" 1413468134
    (proc-def "plug-in-mblur" 1
         "Simulate movement using directional blur"
         "This plug-in simulates the effect seen when photographing a moving object at a slow shutter speed. Done by adding multiple displaced copies."
         "Torsten Martinsen, Federico Mena Quintero, Daniel Skarda, Joerg Gittinger"
         "Torsten Martinsen, Federico Mena Quintero, Daniel Skarda, Joerg Gittinger"
         "May 2007, 1.3"
         "_Motion Blur..."
         1
        (menu-path "<Image>/Filters/Blur")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         8 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "type" "Type of motion blur { LINEAR (0), RADIAL (1), ZOOM (2) }")
        (proc-arg 0 "length" "Length")
        (proc-arg 0 "angle" "Angle")
        (proc-arg 3 "center-x" "Center X (optional)")
        (proc-arg 3 "center-y" "Center Y (optional)"))
    (proc-def "plug-in-mblur-inward" 1
         "Simulate movement using directional blur"
         "This procedure is equivalent to plug-in-mblur but performs the zoom blur inward instead of outward."
         "Torsten Martinsen, Federico Mena Quintero, Daniel Skarda, Joerg Gittinger"
         "Torsten Martinsen, Federico Mena Quintero, Daniel Skarda, Joerg Gittinger"
         "May 2007, 1.3"
         "_Motion Blur..."
         0
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         8 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "type" "Type of motion blur { LINEAR (0), RADIAL (1), ZOOM (2) }")
        (proc-arg 0 "length" "Length")
        (proc-arg 0 "angle" "Angle")
        (proc-arg 3 "center-x" "Center X (optional)")
        (proc-arg 3 "center-y" "Center Y (optional)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/script-fu" 1413468136
    (proc-def "extension-script-fu" 2
         "A scheme interpreter for scripting GIMP operations"
         "More help here later"
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1997"
         ""
         0
        (icon stock-id -1 "")
         ""
         0 0)
    (proc-def "plug-in-script-fu-console" 1
         "Interactive console for Script-Fu development"
         "Provides an interface which allows interactive scheme development."
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1997"
         "_Console"
         1
        (menu-path "<Image>/Filters/Languages/Script-Fu")
        (icon stock-id -1 "")
         ""
         1 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }"))
    (proc-def "plug-in-script-fu-text-console" 1
         "Provides a text console mode for script-fu development"
         "Provides an interface which allows interactive scheme development."
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1997"
         ""
         0
        (icon stock-id -1 "")
         ""
         1 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }"))
    (proc-def "plug-in-script-fu-server" 1
         "Server for remote Script-Fu operation"
         "Provides a server for remote script-fu operation. NOTE that for security reasons this procedure's API was changed in an incompatible way since GIMP 2.8.12. You now have to pass the IP to listen on as first parameter. Calling this procedure with the old API will fail on purpose."
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1997"
         "_Start Server..."
         1
        (menu-path "<Image>/Filters/Languages/Script-Fu")
        (icon stock-id -1 "")
         ""
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "ip" "The ip on which to listen for requests")
        (proc-arg 0 "port" "The port on which to listen for requests")
        (proc-arg 4 "logfile" "The file to log server activity to"))
    (proc-def "plug-in-script-fu-eval" 1
         "Evaluate scheme code"
         "Evaluate the code under the scheme interpreter (primarily for batch mode)"
         "Manish Singh"
         "Manish Singh"
         "1998"
         ""
         0
        (icon stock-id -1 "")
         ""
         2 0
        (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "code" "The code to evaluate"))
    (locale-def "gimp20-script-fu"))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/metadata" 1413468139
    (proc-def "plug-in-metadata-editor" 1
         "View and edit metadata (EXIF, IPTC, XMP)"
         "View and edit metadata information attached to the current image.  This can include EXIF, IPTC and/or XMP information.  Some or all of this metadata will be saved in the file, depending on the output file format."
         "Raphaël Quinet <raphael@gimp.org>"
         "Raphaël Quinet <raphael@gimp.org>"
         "2004-2005"
         "Propert_ies"
         1
        (menu-path "<Image>/File/Info")
        (icon stock-id -1 "")
         "RGB*, INDEXED*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "Run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)"))
    (proc-def "plug-in-metadata-decode-xmp" 1
         "Decode an XMP packet"
         "Parse an XMP packet and merge the results with any metadata already attached to the image.  This should be used when an XMP packet is read from an image file."
         "Raphaël Quinet <raphael@gimp.org>"
         "Raphaël Quinet <raphael@gimp.org>"
         "2005"
         ""
         0
        (icon stock-id -1 "")
         ""
         2 0
        (proc-arg 13 "image" "Input image")
        (proc-arg 4 "xmp" "XMP packet"))
    (proc-def "plug-in-metadata-encode-xmp" 1
         "Encode metadata into an XMP packet"
         "Generate an XMP packet from the metadata information attached to the image.  The new XMP packet can then be saved into a file."
         "Róman Joost <romanofski@gimp.org>"
         "Róman Joost <romanofski@gimp.org>"
         "2008"
         ""
         0
        (icon stock-id -1 "")
         ""
         1 1
        (proc-arg 13 "image" "Input image")
        (proc-arg 4 "xmp" "XMP packet"))
    (proc-def "plug-in-metadata-decode-exif" 1
         "Decode an EXIF block"
         "Parse an EXIF block and merge the results with any metadata already attached to the image.  This should be used when an EXIF block is read from an image file."
         "Raphaël Quinet <raphael@gimp.org>"
         "Raphaël Quinet <raphael@gimp.org>"
         "2005"
         ""
         0
        (icon stock-id -1 "")
         ""
         3 0
        (proc-arg 13 "image" "Input image")
        (proc-arg 0 "exif-size" "size of the EXIF block")
        (proc-arg 7 "exif" "EXIF block"))
    (proc-def "plug-in-metadata-get" 1
         "Retrieve the values of an XMP property"
         "Retrieve the list of values associated with an XMP property."
         "Raphaël Quinet <raphael@gimp.org>"
         "Raphaël Quinet <raphael@gimp.org>"
         "2005"
         ""
         0
        (icon stock-id -1 "")
         ""
         3 3
        (proc-arg 13 "image" "Input image")
        (proc-arg 4 "schema" "XMP schema prefix or URI")
        (proc-arg 4 "property" "XMP property name")
        (proc-arg 0 "type" "XMP property type")
        (proc-arg 0 "num-vals" "number of values")
        (proc-arg 9 "vals" "XMP property values"))
    (proc-def "plug-in-metadata-set" 1
         "Set the values of an XMP property"
         "Set the list of values associated with an XMP property.  If a property with the same name already exists, it will be replaced."
         "Raphaël Quinet <raphael@gimp.org>"
         "Raphaël Quinet <raphael@gimp.org>"
         "2005"
         ""
         0
        (icon stock-id -1 "")
         ""
         6 0
        (proc-arg 13 "image" "Input image")
        (proc-arg 4 "schema" "XMP schema prefix or URI")
        (proc-arg 4 "property" "XMP property name")
        (proc-arg 0 "type" "XMP property type")
        (proc-arg 0 "num-vals" "number of values")
        (proc-arg 9 "vals" "XMP property values"))
    (proc-def "plug-in-metadata-get-simple" 1
         "Retrieve the value of an XMP property"
         "Retrieve value associated with a scalar XMP property.  This can only be done for simple property types such as text or integers.  Structured types must be retrieved with plug_in_metadata_get()."
         "Raphaël Quinet <raphael@gimp.org>"
         "Raphaël Quinet <raphael@gimp.org>"
         "2005"
         ""
         0
        (icon stock-id -1 "")
         ""
         3 1
        (proc-arg 13 "image" "Input image")
        (proc-arg 4 "schema" "XMP schema prefix or URI")
        (proc-arg 4 "property" "XMP property name")
        (proc-arg 4 "value" "XMP property value"))
    (proc-def "plug-in-metadata-set-simple" 1
         "Set the value of an XMP property"
         "Set the value of a scalar XMP property.  This can only be done for simple property types such as text or integers.  Structured types need to be set with plug_in_metadata_set()."
         "Raphaël Quinet <raphael@gimp.org>"
         "Raphaël Quinet <raphael@gimp.org>"
         "2005"
         ""
         0
        (icon stock-id -1 "")
         ""
         4 0
        (proc-arg 13 "image" "Input image")
        (proc-arg 4 "schema" "XMP schema prefix or URI")
        (proc-arg 4 "property" "XMP property name")
        (proc-arg 4 "value" "XMP property value"))
    (proc-def "plug-in-metadata-import" 1
         "Import XMP from a file into the current image"
         "Load an XMP packet from a file and import it into the current image.  This can be used to add a license statement or some other predefined metadata to an image"
         "Raphaël Quinet <raphael@gimp.org>"
         "Raphaël Quinet <raphael@gimp.org>"
         "2005"
         ""
         0
        (icon stock-id -1 "")
         ""
         2 0
        (proc-arg 13 "image" "Input image")
        (proc-arg 4 "filename" "The name of the XMP file to import"))
    (proc-def "plug-in-metadata-export" 1
         "Export XMP from the current image to a file"
         "Export the metadata associated with the current image into a file.  The metadata will be saved as an XMP packet.  If overwrite is TRUE, then any existing file will be overwritten without warning. If overwrite is FALSE, then an error will occur if the file already exists."
         "Raphaël Quinet <raphael@gimp.org>"
         "Raphaël Quinet <raphael@gimp.org>"
         "2005"
         ""
         0
        (icon stock-id -1 "")
         ""
         3 0
        (proc-arg 13 "image" "Input image")
        (proc-arg 4 "filename" "The name of the file to save the XMP packet in")
        (proc-arg 0 "overwrite" "Overwrite existing file: { FALSE (0), TRUE (1) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/flame" 1413468133
    (proc-def "plug-in-flame" 1
         "Create cosmic recursive fractal flames"
         "Create cosmic recursive fractal flames"
         "Scott Draves"
         "Scott Draves"
         "1997"
         "_Flame..."
         1
        (menu-path "<Image>/Filters/Render/Nature")
        (icon stock-id -1 "")
         "RGB*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/colorxhtml.py" 1413468057
    (proc-def "file-colorxhtml-save" 1
         "Save as colored XHTML"
         "Saves the image as colored XHTML text (based on Perl version by Marc Lehmann)"
         "Manish Singh and Carol Spears"
         "Manish Singh and Carol Spears"
         "2003"
         "Colored XHTML"
         1
        (menu-path "<Save>")
        (icon stock-id -1 "")
        (save-proc
            (extension "xhtml"))
         "RGB"
         9 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "filename" "The name of the file")
        (proc-arg 4 "raw-filename" "The name of the file")
        (proc-arg 4 "source" "Character source")
        (proc-arg 4 "characters" "File to read or characters to use")
        (proc-arg 0 "font-size" "Font size in pixels")
        (proc-arg 0 "separate" "Write a separate CSS file"))
    (locale-def "gimp20-python" "/usr/share/locale"))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/gradient-flare" 1413468137
    (proc-def "plug-in-gflare" 1
         "Produce a lense flare effect using gradients"
         "This plug-in produces a lense flare effect using custom gradients. In interactive call, the user can edit his/her own favorite lense flare (GFlare) and render it. Edited gflare is saved automatically to the folder in gflare-path, if it is defined in gimprc. In non-interactive call, the user can only render one of GFlare which has been stored in gflare-path already."
         "Eiichi Takamori"
         "Eiichi Takamori, and a lot of GIMP people"
         "1997"
         "_Gradient Flare..."
         1
        (menu-path "<Image>/Filters/Light and Shadow/Light")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         14 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "gflare-name" "The name of GFlare")
        (proc-arg 0 "xcenter" "X coordinate of center of GFlare")
        (proc-arg 0 "ycenter" "Y coordinate of center of GFlare")
        (proc-arg 3 "radius" "Radius of GFlare (pixel)")
        (proc-arg 3 "rotation" "Rotation of GFlare (degree)")
        (proc-arg 3 "hue" "Hue rotation of GFlare (degree)")
        (proc-arg 3 "vangle" "Vector angle for second flares (degree)")
        (proc-arg 3 "vlength" "Vector length for second flares (percentage to Radius)")
        (proc-arg 0 "use-asupsample" "Whether it uses or not adaptive supersampling while rendering (boolean)")
        (proc-arg 0 "asupsample-max-depth" "Max depth for adaptive supersampling")
        (proc-arg 3 "asupsample-threshold" "Threshold for adaptive supersampling")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/displace" 1413468139
    (proc-def "plug-in-displace" 1
         "Displace pixels as indicated by displacement maps"
         "Displaces the contents of the specified drawable by the amounts specified by 'amount-x' and 'amount-y' multiplied by the luminance of corresponding pixels in the 'displace-map' drawables."
         "Stephen Robert Norris & (ported to 1.0 by) Spencer Kimball"
         "Stephen Robert Norris"
         "1996"
         "_Displace..."
         1
        (menu-path "<Image>/Filters/Map")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         10 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "amount-x" "Displace multiplier for X or radial direction")
        (proc-arg 3 "amount-y" "Displace multiplier for Y or tangent (degrees) direction")
        (proc-arg 0 "do-x" "Displace in X or radial direction?")
        (proc-arg 0 "do-y" "Displace in Y or tangent direction?")
        (proc-arg 16 "displace-map-x" "Displacement map for X or radial direction")
        (proc-arg 16 "displace-map-y" "Displacement map for Y or tangent direction")
        (proc-arg 0 "displace-type" "Edge behavior { WRAP (1), SMEAR (2), BLACK (3) }"))
    (proc-def "plug-in-displace-polar" 1
         "Displace the contents of the specified drawable"
         "Just like plug-in-displace but working in polar coordinates. The drawable is whirled and pinched according to the map."
         "Stephen Robert Norris & (ported to 1.0 by) Spencer Kimball"
         "Stephen Robert Norris"
         "1996"
         "Displace Polar"
         0
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         10 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "amount-x" "Displace multiplier for X or radial direction")
        (proc-arg 3 "amount-y" "Displace multiplier for Y or tangent (degrees) direction")
        (proc-arg 0 "do-x" "Displace in X or radial direction?")
        (proc-arg 0 "do-y" "Displace in Y or tangent direction?")
        (proc-arg 16 "displace-map-x" "Displacement map for X or radial direction")
        (proc-arg 16 "displace-map-y" "Displacement map for Y or tangent direction")
        (proc-arg 0 "displace-type" "Edge behavior { WRAP (1), SMEAR (2), BLACK (3) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/shift" 1413468137
    (proc-def "plug-in-shift" 1
         "Shift each row of pixels by a random amount"
         "Shifts the pixels of the specified drawable. Each row will be displaced a random value of pixels."
         "Spencer Kimball and Peter Mattis, ported by Brian Degenhardt and Federico Mena Quintero"
         "Brian Degenhardt"
         "1997"
         "_Shift..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "shift-amount" "shift amount (0 <= shift_amount_x <= 200)")
        (proc-arg 0 "orientation" "vertical, horizontal orientation")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/unit-editor" 1413468133
    (proc-def "plug-in-unit-editor" 1
         "Create or alter units used in GIMP"
         "The GIMP unit editor"
         "Michael Natterer <mitch@gimp.org>"
         "Michael Natterer <mitch@gimp.org>"
         "2000"
         "U_nits"
         1
        (menu-path "<Image>/Edit/Preferences")
        (icon stock-id -1 "gimp-tool-measure")
         ""
         1 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/screenshot" 1413468132
    (proc-def "plug-in-screenshot" 1
         "Create an image from an area of the screen"
         "The plug-in allows to take screenshots of an interactively selected window or of the desktop, either the whole desktop or an interactively selected region. When called non-interactively, it may grab the root window or use the window-id passed as a parameter.  The last four parameters are optional and can be used to specify the corners of the region to be grabbed."
         "Sven Neumann <sven@gimp.org>, Henrik Brix Andersen <brix@gimp.org>,Simone Karin Lehmann"
         "1998 - 2008"
         "v1.1 (2008/04)"
         "_Screenshot..."
         1
        (menu-path "<Image>/File/Create/Acquire")
        (icon inline-pixbuf 1606 "GdkP\0\0\6F\2\1\0\2\0\0\0X\0\0\0\26\0\0\0\26\213\0\0\0\0\1\242\242\242\5\203\242\242\242\31\221\0\0\0\0\2\27\27\26D\40\40\40\372\203\51\51\51\375\2\32\32\32\362\26\26\25\60\217\0\0\0\0\2\2\2\2\322\307\310\307\377\203\377\377\377\377\2\263\263\262\363\0\0\0\314\217\0\0\0\0\2\6\6\6\334\206\207\205\377\202\252\253\251\377\3\252\252\251\377ghe\376\1\1\1\320\217\0\0\0\0\2\11\11\11\346\56\57\55\345\202GHE\25\3JKH\32\60\61\57\364\5\5\5\333\212\0\0\0\0\17\26\26\25\31\26\26\25\60\26\26\25g\0\0\0\314\53\54\53\331LMK\375EFD\362ffe\347iig\346lmk\346RSQ\362\13\13\13\360\0\0\0\314\2\2\2\321\26\26\25V\203\0\0\0\0\43\26\26\25\31\26\26\25\60\26\26\25n\3\3\3\331\2\2\2\332JJI\355\215\215\215\372\246\246\246\347\267\270\266\362\177\202\176\377BC\77\377TUR\377\134\135Y\377gid\377\133\135X\377\204\206\204\374wxw\276\224\225\224\314LLK\343\26\26\25D\0\0\0\0\26\26\25D\3\3\3\341\17\17\17\373ghg\377\237\240\236\377\273\274\272\377\302\303\300\377\272\273\270\377\200\201\177\377zzz\377tws\377\220\223\217\377\221\225\221\377\224\227\223\377\202\226\232\226\377K\177\202\175\377xyu\377\217\221\215\377\226\227\226\365\0\0\0\371\0\0\0\0\2\2\2\330\257\261\257\377\275\276\273\377\262\263\260\377UWT\377QSP\377suq\377\135\136\133\377\304\304\304\377\303\303\303\377kmi\377MNJ\377WZX\377\133\140\137\377aeb\377gid\377\175\200\173\377SUQ\377FGE\377\200\201\200\377\12\12\12\357\0\0\0\0\4\4\4\345xyv\377\241\242\236\377\210\212\205\377vxt\377\220\222\217\377GIF\377\53\54\51\377\140\140\140\377jji\377UXV\377y\204\210\377\203\215\220\377\176\204\207\377flo\377PW\134\377SWU\377JLI\377\64\65\62\377tut\377\12\12\12\357\0\0\0\0\4\4\4\344opm\377\221\223\217\377\175\177\173\377\215\217\213\377\140b\137\377\50\51\47\377\52\53\51\377\67\70\65\377VXV\377u\176\202\377nsu\377VYZ\377OST\377OQS\377JOP\377\136cd\377\66\71\70\377\41\42\41\377llk\377\12\12\12\357\0\0\0\0\3\3\3\345npl\377\220\221\216\377\202UWS\377\24GIF\377\40\41\37\377\52\53\51\377\71\72\67\377\136ce\377NRT\377UXY\377\50\54\56\377\22\24\25\377\41\44\46\377ILM\377\70\75\77\377RVX\377\47\47\46\377klk\377\12\12\12\357\0\0\0\1\3\3\3\345nol\377\220\221\216\377\202UWS\377\24GIF\377\40\41\37\377\52\53\51\377\70\72\70\377TXY\377\62\70\71\377\23\25\26\377\16\16\16\377\1\1\1\377\2\2\2\377\24\25\25\377\56\63\64\377\62\70\71\377\60\61\61\377aa\140\377\11\11\11\360\0\0\0\3\3\3\3\345nol\377\204\205\202\377\202UWS\377\24GIF\377\40\41\37\377\52\53\51\377\77BA\377\62\70\72\377\34\40\41\377\31\32\32\377\377\377\377\377hhh\377\40\40\40\377\22\22\22\377\56\60\60\377\56\64\66\377\72\76\77\377\140a\140\377\11\11\10\361\0\0\0\7\3\3\3\345mok\377z\173x\377\202UWS\377\24GIF\377\40\41\37\377\52\53\51\377HJI\377\56\64\66\377\25\27\30\377\40\40\40\377hhh\377\232\232\232\377\175\175\175\377\47\47\47\377\71\73\73\377\57\65\67\377\65\71\71\377\140\140\137\377\11\11\10\362\0\0\0\15\3\3\3\345lnk\377rsp\377\202UWS\377\24GIF\377\40\41\37\377\54\55\52\377\76\100\76\377\56\64\66\377\35\37\40\377\1\1\1\377\70\70\70\377\214\214\214\377\213\213\213\377AAA\377JKK\377\57\65\67\377\66\72\73\377WXV\377\6\6\6\364\0\0\0\21\0\0\0\371\201\202\177\377mok\377\202UWS\377iGIF\377MNM\377RRR\372ghg\364\133\140b\377\53\57\60\377\17\17\17\377\42\42\42\377\47\47\47\377HHH\377\263\263\263\377SUU\377W\134\136\377CFF\374\74\74\74\376\20\20\17\317\0\0\0\20\24\24\23\135\4\4\4\353\177\177\176\375\174\175z\373\175\176\174\374hih\376\71\72\71\371\0\0\0\347\0\0\0\351\7\7\7\367\56\64\66\377\62\65\66\377\40\40\40\377\50\50\50\377\72\72\72\377\140ab\377\71\76\77\377\11\13\13\376\0\0\0\353\0\0\0\300\14\14\13H\0\0\0\15\0\0\0\4\23\23\22L\0\0\0\332\0\0\0\341\0\0\0\346\0\0\0\341\14\14\13\173\0\0\0V\0\0\0a\0\0\0l\10\11\11\371\134\136\137\377LOP\377ILL\377LOQ\377QUV\377\16\17\17\377\34\37\40\244\0\0\0\140\0\0\0\64\0\0\0\27\0\0\0\7\0\0\0\1\0\0\0\3\0\0\0\10\0\0\0\21\0\0\0\34\0\0\0\47\0\0\0\60\0\0\0\66\0\0\0\75\0\0\0A\0\0\0F\4\5\5\355\12\13\13\371\17\20\20\376\15\16\16\375\10\10\11\365\7\10\11j\0\0\0G\0\0\0\55\0\0\0\30\0\0\0\13\0\0\0\4\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\11\0\0\0\16\0\0\0\23\0\0\0\31\0\0\0\35\0\0\0\41\0\0\0\43\0\0\0\44\0\0\0\45\0\0\0\44\0\0\0\46\0\0\0\45\0\0\0\36\0\0\0\27\0\0\0\20\0\0\0\10\0\0\0\3\0\0\0\1\204\0\0\0\0\5\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\5\0\0\0\6\202\0\0\0\10\11\0\0\0\11\0\0\0\7\0\0\0\10\0\0\0\5\0\0\0\7\0\0\0\6\0\0\0\5\0\0\0\3\0\0\0\1\202\0\0\0\0")
         ""
         7 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 0 "root" "Root window { TRUE, FALSE }")
        (proc-arg 0 "window-id" "Window id")
        (proc-arg 0 "x1" "(optional) Region left x coord")
        (proc-arg 0 "y1" "(optional) Region top y coord")
        (proc-arg 0 "x2" "(optional) Region right x coord")
        (proc-arg 0 "y2" "(optional) Region bottom y coord")
        (proc-arg 13 "image" "Output image")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/noise-solid" 1413468141
    (proc-def "plug-in-solid-noise" 1
         "Create a random cloud-like texture"
         "Generates 2D textures using Perlin's classic solid noise function."
         "Marcelo de Gomensoro Malheiros"
         "Marcelo de Gomensoro Malheiros"
         "May 2004, v1.04"
         "_Solid Noise..."
         1
        (menu-path "<Image>/Filters/Render/Clouds")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         9 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "tilable" "Create a tilable output { TRUE, FALSE }")
        (proc-arg 0 "turbulent" "Make a turbulent noise { TRUE, FALSE }")
        (proc-arg 0 "seed" "Random seed")
        (proc-arg 0 "detail" "Detail level (0 - 15)")
        (proc-arg 3 "xsize" "Horizontal texture size")
        (proc-arg 3 "ysize" "Vertical texture size")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/gradients-save-as-css.py" 1413468057
    (proc-def "python-fu-gradient-save-as-css" 1
         "Creates a new palette from a given gradient"
         "palette_from_gradient (gradient, number, segment_colors) -> None"
         "Joao S. O. Bueno"
         "(c) GPL V3.0 or later"
         "2011"
         "Save as CSS..."
         1
        (menu-path "<Gradients>")
        (icon stock-id -1 "")
         ""
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "gradient" "Gradient to use")
        (proc-arg 4 "file-name" "File Name"))
    (locale-def "gimp20-python" "/usr/share/locale"))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/jigsaw" 1413468135
    (proc-def "plug-in-jigsaw" 1
         "Add a jigsaw-puzzle pattern to the image"
         "Jigsaw puzzle look"
         "Nigel Wetten"
         "Nigel Wetten"
         "May 2000"
         "_Jigsaw..."
         1
        (menu-path "<Image>/Filters/Render/Pattern")
        (icon stock-id -1 "")
         "RGB*"
         8 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "x" "Number of tiles across > 0")
        (proc-arg 0 "y" "Number of tiles down > 0")
        (proc-arg 0 "style" "The style/shape of the jigsaw puzzle { 0, 1 }")
        (proc-arg 0 "blend-lines" "Number of lines for shading bevels >= 0")
        (proc-arg 3 "blend-amount" "The power of the light highlights 0 =< 5")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/gradient-map" 1413468136
    (proc-def "plug-in-gradmap" 1
         "Recolor the image using colors from the active gradient"
         "This plug-in maps the contents of the specified drawable with active gradient. It calculates luminosity of each pixel and replaces the pixel by the sample of active gradient at the position proportional to that luminosity. Complete black pixel becomes the leftmost color of the gradient, and complete white becomes the rightmost. Works on both Grayscale and RGB image with/without alpha channel."
         "Eiichi Takamori"
         "Eiichi Takamori"
         "1997"
         "_Gradient Map"
         1
        (menu-path "<Image>/Colors/Map")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable"))
    (proc-def "plug-in-palettemap" 1
         "Recolor the image using colors from the active palette"
         "This plug-in maps the contents of the specified drawable with the active palette. It calculates luminosity of each pixel and replaces the pixel by the palette sample  at the corresponding index. A complete black pixel becomes the lowest palette entry, and complete white becomes the highest. Works on both Grayscale and RGB image with/without alpha channel."
         "Bill Skaggs"
         "Bill Skaggs"
         "2004"
         "_Palette Map"
         1
        (menu-path "<Image>/Colors/Map")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-sgi" 1413468136
    (proc-def "file-sgi-load" 1
         "Loads files in SGI image file format"
         "This plug-in loads SGI image files."
         "Michael Sweet <mike@easysw.com>"
         "Copyright 1997-1998 by Michael Sweet"
         "1.1.1 - 17 May 1998"
         "Silicon Graphics IRIS image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "sgi,rgb,rgba,bw,icon")
            (magic "0,short,474")
            (mime-type "image/x-sgi"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-sgi-save" 1
         "Saves files in SGI image file format"
         "This plug-in saves SGI image files."
         "Michael Sweet <mike@easysw.com>"
         "Copyright 1997-1998 by Michael Sweet"
         "1.1.1 - 17 May 1998"
         "Silicon Graphics IRIS image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "sgi,rgb,rgba,bw,icon")
            (mime-type "image/x-sgi"))
         "RGB*,GRAY*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "compression" "Compression level (0 = none, 1 = RLE, 2 = ARLE)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/unsharp-mask" 1413468137
    (proc-def "plug-in-unsharp-mask" 1
         "The most widely useful method for sharpening an image"
         "The unsharp mask is a sharpening filter that works by comparing using the difference of the image and a blurred version of the image.  It is commonly used on photographic images, and is provides a much more pleasing result than the standard sharpen filter."
         "Winston Chang <winstonc@cs.wisc.edu>"
         "Winston Chang"
         "1999-2009"
         "_Unsharp Mask..."
         1
        (menu-path "<Image>/Filters/Enhance")
        (icon stock-id -1 "")
         "GRAY*, RGB*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "(unused)")
        (proc-arg 16 "drawable" "Drawable to draw on")
        (proc-arg 3 "radius" "Radius of gaussian blur (in pixels > 1.0)")
        (proc-arg 3 "amount" "Strength of effect")
        (proc-arg 0 "threshold" "Threshold (0-255)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-dicom" 1413468135
    (proc-def "file-dicom-load" 1
         "loads files of the dicom file format"
         "Load a file in the DICOM standard format.The standard is defined at http://medical.nema.org/. The plug-in currently only supports reading images with uncompressed pixel sections."
         "Dov Grobgeld"
         "Dov Grobgeld <dov@imagic.weizmann.ac.il>"
         "2003"
         "DICOM image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "dcm,dicom")
            (magic "128,string,DICM")
            (mime-type "image/x-dcm"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-dicom-save" 1
         "Save file in the DICOM file format"
         "Save an image in the medical standard DICOM image formats. The standard is defined at http://medical.nema.org/. The file format is defined in section 10 of the standard. The files are saved uncompressed and the compulsory DICOM tags are filled with default dummy values."
         "Dov Grobgeld"
         "Dov Grobgeld <dov@imagic.weizmann.ac.il>"
         "2003"
         "Digital Imaging and Communications in Medicine image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "dcm,dicom")
            (mime-type "image/x-dcm"))
         "RGB, GRAY"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save")
        (proc-arg 4 "raw-filename" "The name of the file to save")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-xbm" 1413468132
    (proc-def "file-xbm-load" 1
         "Load a file in X10 or X11 bitmap (XBM) file format"
         "Load a file in X10 or X11 bitmap (XBM) file format.  XBM is a lossless format for flat black-and-white (two color indexed) images."
         "Gordon Matzigkeit"
         "Gordon Matzigkeit"
         "1998"
         "X BitMap image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "xbm,icon,bitmap")
            (mime-type "image/x-xbitmap"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-xbm-save" 1
         "Save a file in X10 or X11 bitmap (XBM) file format"
         "Save a file in X10 or X11 bitmap (XBM) file format.  XBM is a lossless format for flat black-and-white (two color indexed) images."
         "Gordon Matzigkeit"
         "Gordon Matzigkeit"
         "1998"
         "X BitMap image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "xbm,icon,bitmap")
            (mime-type "image/x-xbitmap"))
         "INDEXED"
         12 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 4 "comment" "Image description (maximum 72 bytes)")
        (proc-arg 0 "x10" "Save in X10 format")
        (proc-arg 0 "x-hot" "X coordinate of hotspot")
        (proc-arg 0 "y-hot" "Y coordinate of hotspot")
        (proc-arg 4 "prefix" "Identifier prefix [determined from filename]")
        (proc-arg 0 "write-mask" "(0 = ignore, 1 = save as extra file)")
        (proc-arg 4 "mask-extension" "Extension of the mask file")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/rotate" 1413468138
    (proc-def "plug-in-rotate" 1
         "Rotates a layer or the whole image by 90, 180 or 270 degrees"
         "This plug-in does rotate the active layer or the whole image clockwise by multiples of 90 degrees. When the whole image is choosen, the image is resized if necessary."
         "Sven Neumann <sven@gimp.org>, Adam D. Moss <adam@gimp.org>"
         "Sven Neumann, Adam D. Moss"
         "v1.0 (2000/06/18)"
         ""
         0
        (icon stock-id -1 "")
         "RGB*, INDEXED*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "angle" "Angle { 90 (1), 180 (2), 270 (3) } degrees")
        (proc-arg 0 "everything" "Rotate the whole image { TRUE, FALSE }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/blur-gauss-selective" 1413468139
    (proc-def "plug-in-sel-gauss" 1
         "Blur neighboring pixels, but only in low-contrast areas"
         "This filter functions similar to the regular gaussian blur filter except that neighbouring pixels that differ more than the given maxdelta parameter will not be blended with. This way with the correct parameters, an image can be smoothed out without losing details. However, this filter can be rather slow."
         "Thom van Os"
         "Thom van Os"
         "1999"
         "_Selective Gaussian Blur..."
         1
        (menu-path "<Image>/Filters/Blur")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "radius" "Radius of gaussian blur (in pixels, > 0.0)")
        (proc-arg 0 "max-delta" "Maximum delta")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/alien-map" 1413468137
    (proc-def "plug-in-alienmap2" 1
         "Alter colors in various psychedelic ways"
         "No help yet. Just try it and you'll see!"
         "Martin Weber (martweb@gmx.net)"
         "Martin Weber (martweb@gmx.net"
         "24th April 1998"
         "_Alien Map..."
         1
        (menu-path "<Image>/Colors/Map")
        (icon stock-id -1 "")
         "RGB*"
         13 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "redfrequency" "Red/hue component frequency factor")
        (proc-arg 3 "redangle" "Red/hue component angle factor (0-360)")
        (proc-arg 3 "greenfrequency" "Green/saturation component frequency factor")
        (proc-arg 3 "greenangle" "Green/saturation component angle factor (0-360)")
        (proc-arg 3 "bluefrequency" "Blue/luminance component frequency factor")
        (proc-arg 3 "blueangle" "Blue/luminance component angle factor (0-360)")
        (proc-arg 2 "colormodel" "Color model { RGB-MODEL (0), HSL-MODEL (1) }")
        (proc-arg 2 "redmode" "Red/hue application mode { TRUE, FALSE }")
        (proc-arg 2 "greenmode" "Green/saturation application mode { TRUE, FALSE }")
        (proc-arg 2 "bluemode" "Blue/luminance application mode { TRUE, FALSE }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/ripple" 1413468139
    (proc-def "plug-in-ripple" 1
         "Displace pixels in a ripple pattern"
         "Ripples the pixels of the specified drawable. Each row or column will be displaced a certain number of pixels coinciding with the given wave form"
         "Brian Degenhardt <bdegenha@ucsd.edu>"
         "Brian Degenhardt"
         "1997"
         "_Ripple..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         10 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "period" "Period: number of pixels for one wave to complete")
        (proc-arg 0 "amplitude" "Amplitude: maximum displacement of wave")
        (proc-arg 0 "orientation" "Orientation { ORIENTATION-HORIZONTAL (0), ORIENTATION-VERTICAL (1) }")
        (proc-arg 0 "edges" "Edges { SMEAR (0), WRAP (1), BLANK (2) }")
        (proc-arg 0 "waveform" "Waveform { SAWTOOTH (0), SINE (1) }")
        (proc-arg 0 "antialias" "Antialias { TRUE, FALSE }")
        (proc-arg 0 "tile" "Tileable { TRUE, FALSE }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/edge-sobel" 1413468132
    (proc-def "plug-in-sobel" 1
         "Specialized direction-dependent edge detection"
         "This plugin calculates the gradient with a sobel operator. The user can specify which direction to use. When both directions are used, the result is the RMS of the two gradients; if only one direction is used, the result either the absolut value of the gradient, or 127 + gradient (if the 'keep sign' switch is on). This way, information about the direction of the gradient is preserved. Resulting images are not autoscaled."
         "Thorsten Schnier"
         "Thorsten Schnier"
         "1997"
         "_Sobel..."
         1
        (menu-path "<Image>/Filters/Edge-Detect")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "horizontal" "Sobel in horizontal direction")
        (proc-arg 0 "vertical" "Sobel in vertical direction")
        (proc-arg 0 "keep-sign" "Keep sign of result (one direction only)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/apply-canvas" 1413468135
    (proc-def "plug-in-apply-canvas" 1
         "Add a canvas texture to the image"
         "This function applies a canvas texture map to the drawable."
         "Karl-Johan Andersson"
         "Karl-Johan Andersson"
         "1997"
         "_Apply Canvas..."
         1
        (menu-path "<Image>/Filters/Artistic")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "direction" "Light direction (0 - 3)")
        (proc-arg 0 "depth" "Texture depth (1 - 50)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/python-console.py" 1413468057
    (proc-def "python-fu-console" 1
         "Interactive GIMP Python interpreter"
         "Type in commands and see results"
         "James Henstridge"
         "James Henstridge"
         "1997-1999"
         "_Console"
         1
        (menu-path "<Image>/Filters/Languages/Python-Fu")
        (icon stock-id -1 "")
         ""
         1 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }"))
    (locale-def "gimp20-python" "/usr/share/locale"))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/lens-apply" 1413468134
    (proc-def "plug-in-applylens" 1
         "Simulate an elliptical lens over the image"
         "This plug-in uses Snell's law to draw an ellipsoid lens over the image"
         "Morten Eriksen"
         "Morten Eriksen"
         "1997"
         "Apply _Lens..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "refraction" "Lens refraction index")
        (proc-arg 0 "keep-surroundings" "Keep lens surroundings { TRUE, FALSE }")
        (proc-arg 0 "set-background" "Set lens surroundings to BG value { TRUE, FALSE }")
        (proc-arg 0 "set-transparent" "Set lens surroundings transparent { TRUE, FALSE }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/despeckle" 1413468134
    (proc-def "plug-in-despeckle" 1
         "Remove speckle noise from the image"
         "This plug-in selectively performs a median or adaptive box filter on an image."
         "Michael Sweet <mike@easysw.com>"
         "Copyright 1997-1998 by Michael Sweet"
         "May 2010"
         "Des_peckle..."
         1
        (menu-path "<Image>/Filters/Enhance")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "radius" "Filter box radius (default = 3)")
        (proc-arg 0 "type" "Filter type { MEDIAN (0), ADAPTIVE (1), RECURSIVE-MEDIAN (2), RECURSIVE-ADAPTIVE (3) }")
        (proc-arg 0 "black" "Black level (-1 to 255)")
        (proc-arg 0 "white" "White level (0 to 256)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/ifs-compose" 1413468135
    (proc-def "plug-in-ifscompose" 1
         "Create an Iterated Function System (IFS) fractal"
         "Interactively create an Iterated Function System fractal. Use the window on the upper left to adjust the component transformations of the fractal. The operation that is performed is selected by the buttons underneath the window, or from a menu popped up by the right mouse button. The fractal will be rendered with a transparent background if the current image has an alpha channel."
         "Owen Taylor"
         "Owen Taylor"
         "1997"
         "_IFS Fractal..."
         1
        (menu-path "<Image>/Filters/Render/Nature")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/selection-to-path" 1413468137
    (proc-def "plug-in-sel2path" 1
         "Converts a selection to a path"
         "Converts a selection to a path"
         "Andy Thomas"
         "Andy Thomas"
         "1999"
         ""
         0
        (icon stock-id -1 "")
         "RGB*, INDEXED*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)"))
    (proc-def "plug-in-sel2path-advanced" 1
         "Converts a selection to a path (with advanced user menu)"
         "Converts a selection to a path (with advanced user menu)"
         "Andy Thomas"
         "Andy Thomas"
         "1999"
         ""
         0
        (icon stock-id -1 "")
         "RGB*, INDEXED*, GRAY*"
         23 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)")
        (proc-arg 3 "align-threshold" "align_threshold")
        (proc-arg 3 "corner-always-threshold" "corner_always_threshold")
        (proc-arg 2 "corner-surround" "corner_surround")
        (proc-arg 3 "corner-threshold" "corner_threshold")
        (proc-arg 3 "error-threshold" "error_threshold")
        (proc-arg 2 "filter-alternative-surround" "filter_alternative_surround")
        (proc-arg 3 "filter-epsilon" "filter_epsilon")
        (proc-arg 2 "filter-iteration-count" "filter_iteration_count")
        (proc-arg 3 "filter-percent" "filter_percent")
        (proc-arg 2 "filter-secondary-surround" "filter_secondary_surround")
        (proc-arg 2 "filter-surround" "filter_surround")
        (proc-arg 2 "keep-knees" "{1-Yes, 0-No}")
        (proc-arg 3 "line-reversion-threshold" "line_reversion_threshold")
        (proc-arg 3 "line-threshold" "line_threshold")
        (proc-arg 3 "reparameterize-improvement" "reparameterize_improvement")
        (proc-arg 3 "reparameterize-threshold" "reparameterize_threshold")
        (proc-arg 3 "subdivide-search" "subdivide_search")
        (proc-arg 2 "subdivide-surround" "subdivide_surround")
        (proc-arg 3 "subdivide-threshold" "subdivide_threshold")
        (proc-arg 2 "tangent-surround" "tangent_surround")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/edge" 1413468140
    (proc-def "plug-in-edge" 1
         "Several simple methods for detecting edges"
         "Perform edge detection on the contents of the specified drawable.AMOUNT is an arbitrary constant, WRAPMODE is like displace plug-in (useful for tilable image). EDGEMODE sets the kind of matrix transform applied to the pixels, SOBEL was the method used in older versions."
         "Peter Mattis & (ported to 1.0 by) Eiichi Takamori"
         "Peter Mattis"
         "1996"
         "_Edge..."
         1
        (menu-path "<Image>/Filters/Edge-Detect")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "amount" "Edge detection amount")
        (proc-arg 0 "wrapmode" "Edge detection behavior { WRAP (1), SMEAR (2), BLACK (3) }")
        (proc-arg 0 "edgemode" "Edge detection algorithm { SOBEL (0), PREWITT (1), GRADIENT (2), ROBERTS (3), DIFFERENTIAL (4), LAPLACE (5) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-gif-load" 1413468133
    (proc-def "file-gif-load" 1
         "Loads files of Compuserve GIF file format"
         "FIXME: write help for gif_load"
         "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas"
         "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas"
         "1995-2006"
         "GIF image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "gif")
            (magic "0,string,GIF8")
            (mime-type "image/gif")
            (thumb-loader "file-gif-load-thumb"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-gif-load-thumb" 1
         "Loads only the first frame of a GIF image, to be used as a thumbnail"
         ""
         "Sven Neumann"
         "Sven Neumann"
         "2006"
         ""
         0
        (icon stock-id -1 "")
         ""
         2 3
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Output image")
        (proc-arg 0 "image-width" "Width of full-sized image")
        (proc-arg 0 "image-height" "Height of full-sized image")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/blur-gauss" 1413468140
    (proc-def "plug-in-gauss" 1
         "Simplest, most commonly used way of blurring"
         "Applies a gaussian blur to the drawable, with specified radius of affect.  The standard deviation of the normal distribution used to modify pixel values is calculated based on the supplied radius.  Horizontal and vertical blurring can be independently invoked by specifying only one to run.  The IIR gaussian blurring works best for large radius values and for images which are not computer-generated."
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1995-1996"
         "_Gaussian Blur..."
         1
        (menu-path "<Image>/Filters/Blur")
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "horizontal" "Horizontal radius of gaussian blur (in pixels, > 0.0)")
        (proc-arg 3 "vertical" "Vertical radius of gaussian blur (in pixels, > 0.0)")
        (proc-arg 0 "method" "Blur method { IIR (0), RLE (1) }"))
    (proc-def "plug-in-gauss-iir" 1
         "Apply a gaussian blur"
         "Applies a gaussian blur to the drawable, with specified radius of affect.  The standard deviation of the normal distribution used to modify pixel values is calculated based on the supplied radius.  Horizontal and vertical blurring can be independently invoked by specifying only one to run.  The IIR gaussian blurring works best for large radius values and for images which are not computer-generated."
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1995-1996"
         ""
         0
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "radius" "Radius of gaussian blur (in pixels, > 0.0)")
        (proc-arg 0 "horizontal" "Blur in horizontal direction")
        (proc-arg 0 "vertical" "Blur in vertical direction"))
    (proc-def "plug-in-gauss-iir2" 1
         "Apply a gaussian blur"
         "Applies a gaussian blur to the drawable, with specified radius of affect.  The standard deviation of the normal distribution used to modify pixel values is calculated based on the supplied radius.  This radius can be specified indepently on for the horizontal and the vertical direction. The IIR gaussian blurring works best for large radius values and for images which are not computer-generated."
         "Spencer Kimball, Peter Mattis & Sven Neumann"
         "Spencer Kimball, Peter Mattis & Sven Neumann"
         "1995-2000"
         ""
         0
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "horizontal" "Horizontal radius of gaussian blur (in pixels, > 0.0)")
        (proc-arg 3 "vertical" "Vertical radius of gaussian blur (in pixels, > 0.0)"))
    (proc-def "plug-in-gauss-rle" 1
         "Apply a gaussian blur"
         "Applies a gaussian blur to the drawable, with specified radius of affect.  The standard deviation of the normal distribution used to modify pixel values is calculated based on the supplied radius.  Horizontal and vertical blurring can be independently invoked by specifying only one to run.  The RLE gaussian blurring performs most efficiently on computer-generated images or images with large areas of constant intensity."
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1995-1996"
         ""
         0
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "radius" "Radius of gaussian blur (in pixels, > 0.0)")
        (proc-arg 0 "horizontal" "Blur in horizontal direction")
        (proc-arg 0 "vertical" "Blur in vertical direction"))
    (proc-def "plug-in-gauss-rle2" 1
         "Apply a gaussian blur"
         "Applies a gaussian blur to the drawable, with specified radius of affect.  The standard deviation of the normal distribution used to modify pixel values is calculated based on the supplied radius.  This radius can be specified indepently on for the horizontal and the vertical direction. The RLE gaussian blurring performs most efficiently on computer-generated images or images with large areas of constant intensity."
         "Spencer Kimball, Peter Mattis & Sven Neumann"
         "Spencer Kimball, Peter Mattis & Sven Neumann"
         "1995-2000"
         ""
         0
        (icon stock-id -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "horizontal" "Horizontal radius of gaussian blur (in pixels, > 0.0)")
        (proc-arg 3 "vertical" "Vertical radius of gaussian blur (in pixels, > 0.0)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-xjt" 1413468138
    (proc-def "file-xjt-load" 1
         "loads files of the jpeg-tar file format"
         "loads files of the jpeg-tar file format"
         "Wolfgang Hofer"
         "Wolfgang Hofer"
         "2000-Mar-07"
         "GIMP compressed XJT image"
         0
        (icon stock-id -1 "")
        (load-proc
            (extension "xjt,xjtgz,xjtbz2"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/red-eye-removal" 1413468134
    (proc-def "plug-in-red-eye-removal" 1
         "Remove the red eye effect caused by camera flashes"
         "This plug-in removes the red eye effect caused by camera flashes by using a percentage based red color threshold.  Make a selection containing the eyes, and apply the filter while adjusting the threshold to accurately remove the red eyes."
         "Robert Merkel <robert.merkel@benambra.org>, Andreas Røsdal <andrearo@stud.ntnu.no>"
         "Copyright 2004-2006 Robert Merkel, Andreas Røsdal"
         "2006"
         "_Red Eye Removal..."
         1
        (menu-path "<Image>/Filters/Enhance")
        (icon stock-id -1 "")
         "RGB*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "threshold" "Red eye threshold in percent")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/color-rotate" 1413468133
    (proc-def "plug-in-rotate-colormap" 1
         "Replace a range of colors with another"
         "Exchanges two color ranges. Based on code from Pavel Grinfeld (pavel@ml.com). This version written by Sven Anders (anderss@fmi.uni-passau.de)."
         "Sven Anders (anderss@fmi.uni-passau.de) and Pavel Grinfeld (pavel@ml.com)"
         "Sven Anders (anderss@fmi.uni-passau.de)"
         "04th April 1999"
         "_Rotate Colors..."
         1
        (menu-path "<Image>/Colors/Map")
        (icon stock-id -1 "")
         "RGB*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (used for indexed images)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/guillotine" 1413468141
    (proc-def "plug-in-guillotine" 1
         "Slice the image into subimages using guides"
         "This function takes an image and slices it along its guides, creating new images. The original image is not modified."
         "Adam D. Moss (adam@foxbox.org)"
         "Adam D. Moss (adam@foxbox.org)"
         "1998"
         "_Guillotine"
         1
        (menu-path "<Image>/Image/Transform")
        (icon stock-id -1 "")
         "RGB*, INDEXED*, GRAY*"
         3 2
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)")
        (proc-arg 0 "image-count" "Number of images created")
        (proc-arg 5 "image-ids" "Output images")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-tiff-save" 1413468132
    (proc-def "file-tiff-save" 1
         "saves files in the tiff file format"
         "Saves files in the Tagged Image File Format.  The value for the saved comment is taken from the 'gimp-comment' parasite."
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1995-1996,2000-2003"
         "TIFF image"
         0
        (icon stock-id -1 "")
        (save-proc
            (extension "tif,tiff")
            (mime-type "image/tiff"))
         "RGB*, GRAY*, INDEXED"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2), DEFLATE (3), JPEG (4), CCITT G3 Fax (5), CCITT G4 Fax (6) }"))
    (proc-def "file-tiff-save2" 1
         "saves files in the tiff file format"
         "Saves files in the Tagged Image File Format.  The value for the saved comment is taken from the 'gimp-comment' parasite."
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1995-1996,2000-2003"
         "TIFF image"
         0
        (icon stock-id -1 "")
         "RGB*, GRAY*, INDEXED"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2), DEFLATE (3), JPEG (4), CCITT G3 Fax (5), CCITT G4 Fax (6) }")
        (proc-arg 0 "save-transp-pixels" "Keep the color data masked by an alpha channel intact")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-uri" 1413468132
    (proc-def "file-uri-load" 1
         "loads files given an URI"
         "Loads a file using the GIO Virtual File System"
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1995-2008"
         "URI"
         0
        (icon stock-id -1 "gimp-web")
        (load-proc
            (prefix "file:"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-uri-save" 1
         "saves files given an URI"
         "Saves a file using the GIO Virtual File System"
         "Michael Natterer, Sven Neumann"
         "Michael Natterer"
         "2005-2008"
         "URI"
         0
        (icon stock-id -1 "gimp-web")
        (save-proc
            (prefix "file:"))
         "RGB*, GRAY*, INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")))

# end of pluginrc