blob: 9ab261353e9e2810aaa028d724d3101579873580 (
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
|
# carton snapshot format: version 1.0
DISTRIBUTIONS
Algorithm-Diff-1.1903
pathname: T/TY/TYEMQ/Algorithm-Diff-1.1903.tar.gz
provides:
Algorithm::Diff 1.1903
Algorithm::Diff::_impl 1.1903
requirements:
ExtUtils::MakeMaker 0
Alt-Crypt-RSA-BigInt-0.05
pathname: D/DA/DANAJ/Alt-Crypt-RSA-BigInt-0.05.tar.gz
provides:
Alt::Crypt::RSA::BigInt 0.05
requirements:
Benchmark 0
Bytes::Random::Secure 0.23
Carp 0
Class::Loader 0
Convert::ASCII::Armour 0
Crypt::Blowfish 0
Crypt::CBC 2.17
Data::Buffer 0
Data::Dumper 0
Digest::MD2 0
Digest::MD5 0
Digest::SHA 0
Exporter 0
ExtUtils::MakeMaker 0
MIME::Base64 0
Math::BigInt 1.78
Math::BigInt::GMP 0
Math::Prime::Util 0.17
Math::Prime::Util::GMP 0
Sort::Versions 0
Test::More 0.45
Tie::EncryptedHash 0
perl 5.008
AnyEvent-7.12
pathname: M/ML/MLEHMANN/AnyEvent-7.12.tar.gz
provides:
AE undef
AE::Log::COLLECT undef
AE::Log::FILTER undef
AE::Log::LOG undef
AnyEvent 7.12
AnyEvent::Base 7.12
AnyEvent::CondVar 7.12
AnyEvent::CondVar::Base 7.12
AnyEvent::DNS undef
AnyEvent::Debug undef
AnyEvent::Debug::Backtrace undef
AnyEvent::Debug::Wrap undef
AnyEvent::Debug::Wrapped undef
AnyEvent::Debug::shell undef
AnyEvent::Handle undef
AnyEvent::IO undef
AnyEvent::IO::IOAIO undef
AnyEvent::IO::Perl undef
AnyEvent::Impl::Cocoa undef
AnyEvent::Impl::EV undef
AnyEvent::Impl::Event undef
AnyEvent::Impl::EventLib undef
AnyEvent::Impl::FLTK undef
AnyEvent::Impl::Glib undef
AnyEvent::Impl::IOAsync undef
AnyEvent::Impl::Irssi undef
AnyEvent::Impl::POE undef
AnyEvent::Impl::Perl undef
AnyEvent::Impl::Qt undef
AnyEvent::Impl::Qt::Io undef
AnyEvent::Impl::Qt::Timer undef
AnyEvent::Impl::Tk undef
AnyEvent::Impl::UV undef
AnyEvent::Log undef
AnyEvent::Log::COLLECT undef
AnyEvent::Log::Ctx undef
AnyEvent::Log::FILTER undef
AnyEvent::Log::LOG undef
AnyEvent::Loop undef
AnyEvent::Socket undef
AnyEvent::Strict undef
AnyEvent::TLS undef
AnyEvent::Util undef
requirements:
Canary::Stability 0
ExtUtils::MakeMaker 6.52
Apache-LogFormat-Compiler-0.33
pathname: K/KA/KAZEBURO/Apache-LogFormat-Compiler-0.33.tar.gz
provides:
Apache::LogFormat::Compiler 0.33
requirements:
Module::Build 0.38
POSIX 0
POSIX::strftime::Compiler 0.30
Time::Local 0
perl 5.008001
AppConfig-1.71
pathname: N/NE/NEILB/AppConfig-1.71.tar.gz
provides:
AppConfig 1.71
AppConfig::Args 1.71
AppConfig::CGI 1.71
AppConfig::File 1.71
AppConfig::Getopt 1.71
AppConfig::State 1.71
AppConfig::Sys 1.71
requirements:
ExtUtils::MakeMaker 0
Test::More 0
perl 5.008008
Auth-GoogleAuth-1.01
pathname: G/GR/GRYPHON/Auth-GoogleAuth-1.01.tar.gz
provides:
Auth::GoogleAuth 1.01
requirements:
Carp 0
Class::Accessor 0
Convert::Base32 0
Digest::HMAC_SHA1 0
ExtUtils::MakeMaker 0
Math::Random::MT 0
URI::Escape 0
base 0
perl 5.006
strict 0
warnings 0
B-Hooks-EndOfScope-0.21
pathname: E/ET/ETHER/B-Hooks-EndOfScope-0.21.tar.gz
provides:
B::Hooks::EndOfScope 0.21
B::Hooks::EndOfScope::PP 0.21
B::Hooks::EndOfScope::XS 0.21
requirements:
ExtUtils::MakeMaker 0
Module::Implementation 0.05
Sub::Exporter::Progressive 0.001006
Text::ParseWords 0
Variable::Magic 0.48
perl 5.008001
strict 0
warnings 0
Bytes-Random-Secure-0.29
pathname: D/DA/DAVIDO/Bytes-Random-Secure-0.29.tar.gz
provides:
Bytes::Random::Secure 0.29
requirements:
Carp 0
Crypt::Random::Seed 0
ExtUtils::MakeMaker 6.56
MIME::Base64 0
MIME::QuotedPrint 3.03
Math::Random::ISAAC 0
Scalar::Util 1.21
Test::More 0.98
perl 5.006000
CGI.pm-3.51
pathname: M/MA/MARKSTOS/CGI.pm-3.51.tar.gz
provides:
CGI 3.51
CGI::Apache 1.01
CGI::Carp 3.51
CGI::Cookie 1.30
CGI::Fast 1.08
CGI::Pretty 3.46
CGI::Push 1.05
CGI::Switch 1.01
CGI::Util 3.51
CGITempFile 3.51
Fh 3.51
MultipartBuffer 3.51
utf8 3.51
requirements:
ExtUtils::MakeMaker 0
FCGI 0.67
File::Spec 0.82
Test::More 0.8
perl 5.006000
CPAN-Meta-2.150005
pathname: D/DA/DAGOLDEN/CPAN-Meta-2.150005.tar.gz
provides:
CPAN::Meta 2.150005
CPAN::Meta::Converter 2.150005
CPAN::Meta::Feature 2.150005
CPAN::Meta::History 2.150005
CPAN::Meta::Merge 2.150005
CPAN::Meta::Prereqs 2.150005
CPAN::Meta::Spec 2.150005
CPAN::Meta::Validator 2.150005
requirements:
CPAN::Meta::Requirements 2.121
CPAN::Meta::YAML 0.008
Carp 0
ExtUtils::MakeMaker 6.17
JSON::PP 2.27200
Parse::CPAN::Meta 1.4414
Scalar::Util 0
perl 5.008
strict 0
version 0.88
warnings 0
CPAN-Meta-Requirements-2.140
pathname: D/DA/DAGOLDEN/CPAN-Meta-Requirements-2.140.tar.gz
provides:
CPAN::Meta::Requirements 2.140
requirements:
B 0
Carp 0
ExtUtils::MakeMaker 6.17
perl 5.006
strict 0
version 0.88
warnings 0
CPAN-Meta-YAML-0.018
pathname: D/DA/DAGOLDEN/CPAN-Meta-YAML-0.018.tar.gz
provides:
CPAN::Meta::YAML 0.018
requirements:
B 0
Carp 0
Exporter 0
ExtUtils::MakeMaker 6.17
Fcntl 0
Scalar::Util 0
perl 5.008001
strict 0
warnings 0
Cache-Memcached-1.30
pathname: D/DO/DORMANDO/Cache-Memcached-1.30.tar.gz
provides:
Cache::Memcached 1.30
Cache::Memcached::GetParser undef
requirements:
Encode 0
ExtUtils::MakeMaker 0
Storable 0
String::CRC32 0
Time::HiRes 0
Canary-Stability-2011
pathname: M/ML/MLEHMANN/Canary-Stability-2011.tar.gz
provides:
Canary::Stability 2011
requirements:
ExtUtils::MakeMaker 0
Chart-2.4.10
pathname: C/CH/CHARTGRP/Chart-2.4.10.tar.gz
provides:
Chart undef
Chart::Bars 2.004010
Chart::Base 2.004010
Chart::BrushStyles 2.004010
Chart::Composite 2.004010
Chart::Constants undef
Chart::Direction 2.004010
Chart::ErrorBars 2.004010
Chart::HorizontalBars 2.004010
Chart::Lines 2.004010
Chart::LinesPoints 2.004010
Chart::Mountain 2.004010
Chart::Pareto 2.004010
Chart::Pie 2.004010
Chart::Points 2.004010
Chart::Split 2.004010
Chart::StackedBars 2.004010
requirements:
ExtUtils::MakeMaker 0
GD 2
Class-Accessor-0.34
pathname: K/KA/KASEI/Class-Accessor-0.34.tar.gz
provides:
Class::Accessor 0.34
Class::Accessor::Fast 0.34
Class::Accessor::Faster 0.34
requirements:
ExtUtils::MakeMaker 0
base 1.01
Class-Accessor-Lite-0.08
pathname: K/KA/KAZUHO/Class-Accessor-Lite-0.08.tar.gz
provides:
Class::Accessor::Lite 0.08
requirements:
ExtUtils::MakeMaker 6.36
Class-Data-Inheritable-0.08
pathname: T/TM/TMTM/Class-Data-Inheritable-0.08.tar.gz
provides:
Class::Data::Inheritable 0.08
requirements:
ExtUtils::MakeMaker 0
Class-ErrorHandler-0.04
pathname: T/TO/TOKUHIROM/Class-ErrorHandler-0.04.tar.gz
provides:
Class::ErrorHandler 0.04
requirements:
ExtUtils::MakeMaker 0
perl 5.008_001
Class-Inspector-1.28
pathname: A/AD/ADAMK/Class-Inspector-1.28.tar.gz
provides:
Class::Inspector 1.28
Class::Inspector::Functions 1.28
requirements:
ExtUtils::MakeMaker 6.59
File::Spec 0.80
Test::More 0.47
perl 5.006
Class-Load-0.23
pathname: E/ET/ETHER/Class-Load-0.23.tar.gz
provides:
Class::Load 0.23
Class::Load::PP 0.23
requirements:
Carp 0
Data::OptList 0
Exporter 0
ExtUtils::MakeMaker 0
Module::Implementation 0.04
Module::Runtime 0.012
Package::Stash 0.14
Scalar::Util 0
Try::Tiny 0
base 0
perl 5.006
strict 0
warnings 0
Class-Loader-2.03
pathname: V/VI/VIPUL/Class-Loader-2.03.tar.gz
provides:
Class::Loader 2.03
Class::LoaderTest undef
requirements:
ExtUtils::MakeMaker 0
Class-Singleton-1.5
pathname: S/SH/SHAY/Class-Singleton-1.5.tar.gz
provides:
Class::Singleton 1.5
requirements:
ExtUtils::MakeMaker 0
Class-Trigger-0.14
pathname: M/MI/MIYAGAWA/Class-Trigger-0.14.tar.gz
provides:
Class::Trigger 0.14
requirements:
ExtUtils::MakeMaker 6.42
Filter::Util::Call 0
IO::Scalar 0
IO::WrapTie 0
Test::More 0.32
Compress-Raw-Bzip2-2.069
pathname: P/PM/PMQS/Compress-Raw-Bzip2-2.069.tar.gz
provides:
Compress::Raw::Bzip2 2.069
requirements:
ExtUtils::MakeMaker 0
Compress-Raw-Zlib-2.069
pathname: P/PM/PMQS/Compress-Raw-Zlib-2.069.tar.gz
provides:
Compress::Raw::Zlib 2.069
requirements:
ExtUtils::MakeMaker 0
Convert-ASCII-Armour-1.4
pathname: V/VI/VIPUL/Convert-ASCII-Armour-1.4.tar.gz
provides:
Convert::ASCII::Armor undef
Convert::ASCII::Armour 1.4
requirements:
Compress::Zlib 0
Digest::MD5 0
ExtUtils::MakeMaker 0
MIME::Base64 0
Convert-ASN1-0.27
pathname: G/GB/GBARR/Convert-ASN1-0.27.tar.gz
provides:
Convert::ASN1 0.27
requirements:
ExtUtils::MakeMaker 6.30
Math::BigInt 1.997
Test::More 0.90
Convert-Base32-0.06
pathname: I/IK/IKEGAMI/Convert-Base32-0.06.tar.gz
provides:
Convert::Base32 0.06
requirements:
ExtUtils::MakeMaker 0
Test::Exception 0
Test::More 0
Convert-PEM-0.08
pathname: B/BT/BTROTT/Convert-PEM-0.08.tar.gz
provides:
Convert::PEM 0.08
Convert::PEM::CBC undef
requirements:
Class::ErrorHandler 0
Convert::ASN1 0.10
Crypt::DES_EDE3 0
Digest::MD5 0
ExtUtils::MakeMaker 6.42
Filter::Util::Call 0
MIME::Base64 0
Test::Exception 0
Test::More 0
perl 5.008001
Cookie-Baker-0.06
pathname: K/KA/KAZEBURO/Cookie-Baker-0.06.tar.gz
provides:
Cookie::Baker 0.06
requirements:
Exporter 0
Module::Build 0.38
URI::Escape 0
perl 5.008001
Crypt-Blowfish-2.14
pathname: D/DP/DPARIS/Crypt-Blowfish-2.14.tar.gz
provides:
Crypt::Blowfish 2.14
requirements:
ExtUtils::MakeMaker 0
Crypt-CAST5_PP-1.04
pathname: B/BO/BOBMATH/Crypt-CAST5_PP-1.04.tar.gz
provides:
Crypt::CAST5_PP 1.04
requirements:
ExtUtils::MakeMaker 0
Test::More 0.47
Crypt-CBC-2.33
pathname: L/LD/LDS/Crypt-CBC-2.33.tar.gz
provides:
Crypt::CBC 2.33
requirements:
Digest::MD5 2.00
ExtUtils::MakeMaker 0
Crypt-Curve25519-0.05
pathname: A/AJ/AJGB/Crypt-Curve25519-0.05.tar.gz
provides:
Crypt::Curve25519 0.05
requirements:
ExtUtils::MakeMaker 0
Crypt-DES-2.07
pathname: D/DP/DPARIS/Crypt-DES-2.07.tar.gz
provides:
Crypt::DES 2.07
requirements:
ExtUtils::MakeMaker 0
Crypt-DES_EDE3-0.01
pathname: B/BT/BTROTT/Crypt-DES_EDE3-0.01.tar.gz
provides:
Crypt::DES_EDE3 0.01
requirements:
Crypt::DES 0
ExtUtils::MakeMaker 0
Crypt-DH-0.07
pathname: M/MI/MITHALDU/Crypt-DH-0.07.tar.gz
provides:
Crypt::DH 0.07
requirements:
ExtUtils::MakeMaker 6.59
Math::BigInt 1.60
Math::BigInt::GMP 1.24
Test::More 0.47
perl 5.006
Crypt-DSA-1.17
pathname: A/AD/ADAMK/Crypt-DSA-1.17.tar.gz
provides:
BufferWithInt 1.17
Crypt::DSA 1.17
Crypt::DSA::Key 1.17
Crypt::DSA::Key::PEM 1.17
Crypt::DSA::Key::SSH2 1.17
Crypt::DSA::KeyChain 1.17
Crypt::DSA::Signature 1.17
Crypt::DSA::Util 1.17
requirements:
Data::Buffer 0.01
Digest::SHA1 0
ExtUtils::MakeMaker 6.42
File::Spec 0
File::Which 0.05
IPC::Open3 0
MIME::Base64 0
Math::BigInt 1.78
Test::More 0.42
perl 5.006
Crypt-IDEA-1.10
pathname: D/DP/DPARIS/Crypt-IDEA-1.10.tar.gz
provides:
Crypt::IDEA 1.10
IDEA 1.10
requirements:
ExtUtils::MakeMaker 0
Crypt-OpenPGP-1.12
pathname: S/SR/SROMANOV/Crypt-OpenPGP-1.12.tar.gz
provides:
Crypt::OpenPGP 1.12
Crypt::OpenPGP::Armour undef
Crypt::OpenPGP::Buffer undef
Crypt::OpenPGP::CFB undef
Crypt::OpenPGP::Certificate undef
Crypt::OpenPGP::Cipher undef
Crypt::OpenPGP::Cipher::Blowfish undef
Crypt::OpenPGP::Cipher::CAST5 undef
Crypt::OpenPGP::Cipher::DES3 undef
Crypt::OpenPGP::Cipher::IDEA undef
Crypt::OpenPGP::Cipher::Rijndael undef
Crypt::OpenPGP::Cipher::Rijndael192 undef
Crypt::OpenPGP::Cipher::Rijndael256 undef
Crypt::OpenPGP::Cipher::Twofish undef
Crypt::OpenPGP::Ciphertext undef
Crypt::OpenPGP::Compressed undef
Crypt::OpenPGP::Config undef
Crypt::OpenPGP::Config::GnuPG undef
Crypt::OpenPGP::Config::PGP2 undef
Crypt::OpenPGP::Config::PGP5 undef
Crypt::OpenPGP::Constants undef
Crypt::OpenPGP::Digest undef
Crypt::OpenPGP::Digest::MD5 undef
Crypt::OpenPGP::Digest::RIPEMD160 undef
Crypt::OpenPGP::Digest::SHA1 undef
Crypt::OpenPGP::Digest::SHA224 undef
Crypt::OpenPGP::Digest::SHA256 undef
Crypt::OpenPGP::Digest::SHA384 undef
Crypt::OpenPGP::Digest::SHA512 undef
Crypt::OpenPGP::ElGamal::Private undef
Crypt::OpenPGP::ElGamal::Public undef
Crypt::OpenPGP::ErrorHandler undef
Crypt::OpenPGP::Key undef
Crypt::OpenPGP::Key::Public undef
Crypt::OpenPGP::Key::Public::DSA undef
Crypt::OpenPGP::Key::Public::ElGamal undef
Crypt::OpenPGP::Key::Public::RSA undef
Crypt::OpenPGP::Key::Secret undef
Crypt::OpenPGP::Key::Secret::DSA undef
Crypt::OpenPGP::Key::Secret::ElGamal undef
Crypt::OpenPGP::Key::Secret::RSA undef
Crypt::OpenPGP::KeyBlock undef
Crypt::OpenPGP::KeyRing undef
Crypt::OpenPGP::KeyServer undef
Crypt::OpenPGP::MDC undef
Crypt::OpenPGP::Marker undef
Crypt::OpenPGP::Message undef
Crypt::OpenPGP::OnePassSig undef
Crypt::OpenPGP::PacketFactory undef
Crypt::OpenPGP::Plaintext undef
Crypt::OpenPGP::S2k undef
Crypt::OpenPGP::S2k::Salt_Iter undef
Crypt::OpenPGP::S2k::Salted undef
Crypt::OpenPGP::S2k::Simple undef
Crypt::OpenPGP::SKSessionKey undef
Crypt::OpenPGP::SessionKey undef
Crypt::OpenPGP::Signature undef
Crypt::OpenPGP::Signature::SubPacket undef
Crypt::OpenPGP::Trust undef
Crypt::OpenPGP::UserID undef
Crypt::OpenPGP::Util undef
Crypt::OpenPGP::Words undef
requirements:
Alt::Crypt::RSA::BigInt 0
Compress::Zlib 0
Crypt::Blowfish 0
Crypt::CAST5_PP 0
Crypt::DES_EDE3 0
Crypt::DSA 0
Crypt::IDEA 0
Crypt::RIPEMD160 0
Crypt::Rijndael 0
Crypt::Twofish 0
Data::Buffer 0.04
Digest::MD5 0
Digest::SHA 0
ExtUtils::MakeMaker 0
File::HomeDir 0
LWP::UserAgent 0
MIME::Base64 0
Math::BigInt 0
URI::Escape 0
Crypt-RIPEMD160-0.06
pathname: T/TO/TODDR/Crypt-RIPEMD160-0.06.tar.gz
provides:
Crypt::RIPEMD160 0.06
Crypt::RIPEMD160::MAC 0.01
requirements:
ExtUtils::MakeMaker 0
Test::More 0
Crypt-Random-Seed-0.03
pathname: D/DA/DANAJ/Crypt-Random-Seed-0.03.tar.gz
provides:
Crypt::Random::Seed 0.03
requirements:
Carp 0
Crypt::Random::TESHA2 0
Exporter 5.562
ExtUtils::MakeMaker 0
Fcntl 0
Test::More 0.45
base 0
constant 0
perl 5.006002
Crypt-Random-TESHA2-0.01
pathname: D/DA/DANAJ/Crypt-Random-TESHA2-0.01.tar.gz
provides:
Crypt::Random::TESHA2 0.01
Crypt::Random::TESHA2::Config 0.01
requirements:
Carp 0
Digest::SHA 5.22
Exporter 5.562
ExtUtils::MakeMaker 0
Test::More 0.45
Time::HiRes 1.9711
base 0
perl 5.006002
Crypt-Rijndael-1.13
pathname: L/LE/LEONT/Crypt-Rijndael-1.13.tar.gz
provides:
Crypt::Rijndael 1.13
requirements:
ExtUtils::MakeMaker 0
perl 5.006
Crypt-SMIME-0.17
pathname: M/MI/MIKAGE/Crypt-SMIME-0.17.tar.gz
provides:
Crypt::SMIME 0.17
requirements:
ExtUtils::CChecker 0
ExtUtils::Constant 0.23
ExtUtils::MakeMaker 0
ExtUtils::PkgConfig 0
Test::Exception 0
Test::More 0
XSLoader 0
Crypt-Twofish-2.17
pathname: A/AM/AMS/Crypt-Twofish-2.17.tar.gz
provides:
Crypt::Twofish 2.17
requirements:
ExtUtils::MakeMaker 0
strict 0
CryptX-0.039
pathname: M/MI/MIK/CryptX-0.039.tar.gz
provides:
Crypt::AuthEnc undef
Crypt::AuthEnc::CCM undef
Crypt::AuthEnc::EAX undef
Crypt::AuthEnc::GCM undef
Crypt::AuthEnc::OCB undef
Crypt::Checksum undef
Crypt::Checksum::Adler32 undef
Crypt::Checksum::CRC32 undef
Crypt::Cipher undef
Crypt::Cipher::AES undef
Crypt::Cipher::Anubis undef
Crypt::Cipher::Blowfish undef
Crypt::Cipher::CAST5 undef
Crypt::Cipher::Camellia undef
Crypt::Cipher::DES undef
Crypt::Cipher::DES_EDE undef
Crypt::Cipher::KASUMI undef
Crypt::Cipher::Khazad undef
Crypt::Cipher::MULTI2 undef
Crypt::Cipher::Noekeon undef
Crypt::Cipher::RC2 undef
Crypt::Cipher::RC5 undef
Crypt::Cipher::RC6 undef
Crypt::Cipher::SAFERP undef
Crypt::Cipher::SAFER_K128 undef
Crypt::Cipher::SAFER_K64 undef
Crypt::Cipher::SAFER_SK128 undef
Crypt::Cipher::SAFER_SK64 undef
Crypt::Cipher::SEED undef
Crypt::Cipher::Skipjack undef
Crypt::Cipher::Twofish undef
Crypt::Cipher::XTEA undef
Crypt::Digest undef
Crypt::Digest::CHAES undef
Crypt::Digest::MD2 undef
Crypt::Digest::MD4 undef
Crypt::Digest::MD5 undef
Crypt::Digest::RIPEMD128 undef
Crypt::Digest::RIPEMD160 undef
Crypt::Digest::RIPEMD256 undef
Crypt::Digest::RIPEMD320 undef
Crypt::Digest::SHA1 undef
Crypt::Digest::SHA224 undef
Crypt::Digest::SHA256 undef
Crypt::Digest::SHA384 undef
Crypt::Digest::SHA512 undef
Crypt::Digest::SHA512_224 undef
Crypt::Digest::SHA512_256 undef
Crypt::Digest::Tiger192 undef
Crypt::Digest::Whirlpool undef
Crypt::KeyDerivation undef
Crypt::Mac undef
Crypt::Mac::F9 undef
Crypt::Mac::HMAC undef
Crypt::Mac::OMAC undef
Crypt::Mac::PMAC undef
Crypt::Mac::Pelican undef
Crypt::Mac::XCBC undef
Crypt::Misc undef
Crypt::Mode undef
Crypt::Mode::CBC undef
Crypt::Mode::CFB undef
Crypt::Mode::CTR undef
Crypt::Mode::ECB undef
Crypt::Mode::OFB undef
Crypt::PK undef
Crypt::PK::DH undef
Crypt::PK::DSA undef
Crypt::PK::ECC undef
Crypt::PK::RSA undef
Crypt::PRNG undef
Crypt::PRNG::Fortuna undef
Crypt::PRNG::RC4 undef
Crypt::PRNG::Sober128 undef
Crypt::PRNG::Yarrow undef
CryptX 0.039
Math::BigInt::LTM undef
requirements:
ExtUtils::MakeMaker 0
perl 5.006
DBD-SQLite-1.50
pathname: I/IS/ISHIGAKI/DBD-SQLite-1.50.tar.gz
provides:
DBD::SQLite 1.50
DBD::SQLite::Constants undef
DBD::SQLite::VirtualTable 1.50
DBD::SQLite::VirtualTable::Cursor 1.50
DBD::SQLite::VirtualTable::FileContent undef
DBD::SQLite::VirtualTable::FileContent::Cursor undef
DBD::SQLite::VirtualTable::PerlData undef
DBD::SQLite::VirtualTable::PerlData::Cursor undef
requirements:
DBI 1.57
ExtUtils::MakeMaker 0
File::Spec 0.82
Test::Builder 0.86
Test::More 0.47
Tie::Hash 0
perl 5.006
DBD-mysql-4.022
pathname: C/CA/CAPTTOFU/DBD-mysql-4.022.tar.gz
provides:
Bundle::DBD::mysql 4.004
DBD::mysql 4.022
DBD::mysql::GetInfo undef
DBD::mysql::db 4.022
DBD::mysql::dr 4.022
DBD::mysql::st 4.022
requirements:
DBI 1.08
Data::Dumper 0
Test::More 0
perl 5.005
DBI-1.622
pathname: T/TI/TIMB/DBI-1.622.tar.gz
provides:
Bundle::DBI 12.008695
DBD::DBM 0.06
DBD::DBM::Statement 0.06
DBD::DBM::Table 0.06
DBD::DBM::db 0.06
DBD::DBM::dr 0.06
DBD::DBM::st 0.06
DBD::ExampleP 12.014310
DBD::ExampleP::db 12.014310
DBD::ExampleP::dr 12.014310
DBD::ExampleP::st 12.014310
DBD::File 0.40
DBD::File::Statement 0.40
DBD::File::Table 0.40
DBD::File::TieMeta 0.40
DBD::File::TieTables 0.40
DBD::File::db 0.40
DBD::File::dr 0.40
DBD::File::st 0.40
DBD::Gofer 0.015326
DBD::Gofer::Policy::Base 0.010087
DBD::Gofer::Policy::classic 0.010087
DBD::Gofer::Policy::pedantic 0.010087
DBD::Gofer::Policy::rush 0.010087
DBD::Gofer::Transport::Base 0.014120
DBD::Gofer::Transport::corostream undef
DBD::Gofer::Transport::null 0.010087
DBD::Gofer::Transport::pipeone 0.010087
DBD::Gofer::Transport::stream 0.014598
DBD::Gofer::db 0.015326
DBD::Gofer::dr 0.015326
DBD::Gofer::st 0.015326
DBD::NullP 12.014714
DBD::NullP::db 12.014714
DBD::NullP::dr 12.014714
DBD::NullP::st 12.014714
DBD::Proxy 0.2004
DBD::Proxy::RPC::PlClient 0.2004
DBD::Proxy::db 0.2004
DBD::Proxy::dr 0.2004
DBD::Proxy::st 0.2004
DBD::Sponge 12.010002
DBD::Sponge::db 12.010002
DBD::Sponge::dr 12.010002
DBD::Sponge::st 12.010002
DBDI 12.015128
DBI 1.622
DBI::Const::GetInfo::ANSI 2.008696
DBI::Const::GetInfo::ODBC 2.011373
DBI::Const::GetInfoReturn 2.008696
DBI::Const::GetInfoType 2.008696
DBI::DBD 12.015128
DBI::DBD::Metadata 2.014213
DBI::DBD::SqlEngine 0.03
DBI::DBD::SqlEngine::Statement 0.03
DBI::DBD::SqlEngine::Table 0.03
DBI::DBD::SqlEngine::db 0.03
DBI::DBD::SqlEngine::dr 0.03
DBI::DBD::SqlEngine::st 0.03
DBI::FAQ 1.014934
DBI::Gofer::Execute 0.014282
DBI::Gofer::Request 0.012536
DBI::Gofer::Response 0.011565
DBI::Gofer::Serializer::Base 0.009949
DBI::Gofer::Serializer::DataDumper 0.009949
DBI::Gofer::Serializer::Storable 0.009949
DBI::Gofer::Transport::Base 0.012536
DBI::Gofer::Transport::pipeone 0.012536
DBI::Gofer::Transport::stream 0.012536
DBI::Profile 2.015064
DBI::ProfileData 2.010007
DBI::ProfileDumper 2.015324
DBI::ProfileDumper::Apache 2.014120
DBI::ProfileSubs 0.009395
DBI::ProxyServer 0.3005
DBI::ProxyServer::db 0.3005
DBI::ProxyServer::dr 0.3005
DBI::ProxyServer::st 0.3005
DBI::SQL::Nano 1.014600
DBI::SQL::Nano::Statement_ 1.014600
DBI::SQL::Nano::Table_ 1.014600
DBI::Util::CacheMemory 0.010314
DBI::Util::_accessor 0.009478
DBI::common 1.622
requirements:
ExtUtils::MakeMaker 6.48
Test::Simple 0.90
perl 5.008
Daemon-Generic-0.84
pathname: M/MU/MUIR/modules/Daemon-Generic-0.84.tar.gz
provides:
Daemon::Generic 0.84
Daemon::Generic::AnyEvent 0.84
Daemon::Generic::Event 0.84
Daemon::Generic::While1 0.84
requirements:
AnyEvent 0
Cwd 0
Eval::LineNumbers 0
Event 0
ExtUtils::MakeMaker 0
File::Basename 0
File::Flock 2013.06
File::Slurp 0
Getopt::Long 0
Text::Wrap 0
Time::HiRes 0
Data-Buffer-0.04
pathname: B/BT/BTROTT/Data-Buffer-0.04.tar.gz
provides:
Data::Buffer 0.04
requirements:
ExtUtils::MakeMaker 0
Data-ObjectDriver-0.14
pathname: S/SI/SIXAPART/Data-ObjectDriver-0.14.tar.gz
provides:
Data::ObjectDriver 0.14
Data::ObjectDriver::BaseObject undef
Data::ObjectDriver::BaseView undef
Data::ObjectDriver::Driver::BaseCache undef
Data::ObjectDriver::Driver::Cache::Apache undef
Data::ObjectDriver::Driver::Cache::Cache undef
Data::ObjectDriver::Driver::Cache::Memcached undef
Data::ObjectDriver::Driver::Cache::RAM undef
Data::ObjectDriver::Driver::DBD undef
Data::ObjectDriver::Driver::DBD::Oracle undef
Data::ObjectDriver::Driver::DBD::Oracle::db undef
Data::ObjectDriver::Driver::DBD::Pg undef
Data::ObjectDriver::Driver::DBD::SQLite undef
Data::ObjectDriver::Driver::DBD::mysql undef
Data::ObjectDriver::Driver::DBI undef
Data::ObjectDriver::Driver::GearmanDBI undef
Data::ObjectDriver::Driver::MultiPartition undef
Data::ObjectDriver::Driver::Multiplexer undef
Data::ObjectDriver::Driver::Partition undef
Data::ObjectDriver::Driver::SimplePartition undef
Data::ObjectDriver::Errors undef
Data::ObjectDriver::Iterator undef
Data::ObjectDriver::Profiler undef
Data::ObjectDriver::ResultSet undef
Data::ObjectDriver::SQL undef
Data::ObjectDriver::SQL::Oracle undef
requirements:
Class::Accessor::Fast 0
Class::Data::Inheritable 0
Class::Trigger 0
DBI 0
ExtUtils::MakeMaker 6.59
List::Util 0
Module::Build::Tiny 0.035
Test::Exception 0
perl 5.006001
Data-OptList-0.110
pathname: R/RJ/RJBS/Data-OptList-0.110.tar.gz
provides:
Data::OptList 0.110
requirements:
ExtUtils::MakeMaker 0
List::Util 0
Params::Util 0
Sub::Install 0.921
strict 0
warnings 0
Data-Structure-Util-0.16
pathname: A/AN/ANDYA/Data-Structure-Util-0.16.tar.gz
provides:
Data::Structure::Util 0.16
requirements:
Digest::MD5 0
ExtUtils::MakeMaker 0
Scalar::Util 1.01
Storable 0
perl 5.008
DateTime-1.03
pathname: D/DR/DROLSKY/DateTime-1.03.tar.gz
provides:
DateTime 1.03
DateTime::Duration 1.03
DateTime::Helpers 1.03
DateTime::Infinite 1.03
DateTime::Infinite::Future 1.03
DateTime::Infinite::Past 1.03
DateTime::LeapSecond 1.03
requirements:
Carp 0
DateTime::Locale 0.41
DateTime::TimeZone 1.09
ExtUtils::CBuilder 0
Module::Build 0.3601
POSIX 0
Params::Validate 0.76
Scalar::Util 0
Try::Tiny 0
XSLoader 0
base 0
constant 0
integer 0
overload 0
perl 5.008001
strict 0
vars 0
warnings 0
DateTime-Locale-0.45
pathname: D/DR/DROLSKY/DateTime-Locale-0.45.tar.gz
provides:
DateTime::Locale 0.45
DateTime::Locale::Base undef
DateTime::Locale::Catalog undef
DateTime::Locale::aa undef
DateTime::Locale::aa_DJ undef
DateTime::Locale::aa_ER undef
DateTime::Locale::aa_ER_SAAHO undef
DateTime::Locale::aa_ET undef
DateTime::Locale::af undef
DateTime::Locale::af_NA undef
DateTime::Locale::af_ZA undef
DateTime::Locale::ak undef
DateTime::Locale::ak_GH undef
DateTime::Locale::am undef
DateTime::Locale::am_ET undef
DateTime::Locale::ar undef
DateTime::Locale::ar_AE undef
DateTime::Locale::ar_BH undef
DateTime::Locale::ar_DZ undef
DateTime::Locale::ar_EG undef
DateTime::Locale::ar_IQ undef
DateTime::Locale::ar_JO undef
DateTime::Locale::ar_KW undef
DateTime::Locale::ar_LB undef
DateTime::Locale::ar_LY undef
DateTime::Locale::ar_MA undef
DateTime::Locale::ar_OM undef
DateTime::Locale::ar_QA undef
DateTime::Locale::ar_SA undef
DateTime::Locale::ar_SD undef
DateTime::Locale::ar_SY undef
DateTime::Locale::ar_TN undef
DateTime::Locale::ar_YE undef
DateTime::Locale::as undef
DateTime::Locale::as_IN undef
DateTime::Locale::az undef
DateTime::Locale::az_AZ undef
DateTime::Locale::az_Cyrl undef
DateTime::Locale::az_Cyrl_AZ undef
DateTime::Locale::az_Latn undef
DateTime::Locale::az_Latn_AZ undef
DateTime::Locale::be undef
DateTime::Locale::be_BY undef
DateTime::Locale::bg undef
DateTime::Locale::bg_BG undef
DateTime::Locale::bn undef
DateTime::Locale::bn_BD undef
DateTime::Locale::bn_IN undef
DateTime::Locale::bo undef
DateTime::Locale::bo_CN undef
DateTime::Locale::bo_IN undef
DateTime::Locale::bs undef
DateTime::Locale::bs_BA undef
DateTime::Locale::byn undef
DateTime::Locale::byn_ER undef
DateTime::Locale::ca undef
DateTime::Locale::ca_ES undef
DateTime::Locale::cch undef
DateTime::Locale::cch_NG undef
DateTime::Locale::cop undef
DateTime::Locale::cs undef
DateTime::Locale::cs_CZ undef
DateTime::Locale::cy undef
DateTime::Locale::cy_GB undef
DateTime::Locale::da undef
DateTime::Locale::da_DK undef
DateTime::Locale::de undef
DateTime::Locale::de_AT undef
DateTime::Locale::de_BE undef
DateTime::Locale::de_CH undef
DateTime::Locale::de_DE undef
DateTime::Locale::de_LI undef
DateTime::Locale::de_LU undef
DateTime::Locale::dv undef
DateTime::Locale::dv_MV undef
DateTime::Locale::dz undef
DateTime::Locale::dz_BT undef
DateTime::Locale::ee undef
DateTime::Locale::ee_GH undef
DateTime::Locale::ee_TG undef
DateTime::Locale::el undef
DateTime::Locale::el_CY undef
DateTime::Locale::el_GR undef
DateTime::Locale::el_POLYTON undef
DateTime::Locale::en undef
DateTime::Locale::en_AS undef
DateTime::Locale::en_AU undef
DateTime::Locale::en_BE undef
DateTime::Locale::en_BW undef
DateTime::Locale::en_BZ undef
DateTime::Locale::en_CA undef
DateTime::Locale::en_Dsrt undef
DateTime::Locale::en_Dsrt_US undef
DateTime::Locale::en_GB undef
DateTime::Locale::en_GU undef
DateTime::Locale::en_HK undef
DateTime::Locale::en_IE undef
DateTime::Locale::en_IN undef
DateTime::Locale::en_JM undef
DateTime::Locale::en_MH undef
DateTime::Locale::en_MP undef
DateTime::Locale::en_MT undef
DateTime::Locale::en_NA undef
DateTime::Locale::en_NZ undef
DateTime::Locale::en_PH undef
DateTime::Locale::en_PK undef
DateTime::Locale::en_SG undef
DateTime::Locale::en_Shaw undef
DateTime::Locale::en_TT undef
DateTime::Locale::en_UM undef
DateTime::Locale::en_US undef
DateTime::Locale::en_US_POSIX undef
DateTime::Locale::en_VI undef
DateTime::Locale::en_ZA undef
DateTime::Locale::en_ZW undef
DateTime::Locale::eo undef
DateTime::Locale::es undef
DateTime::Locale::es_AR undef
DateTime::Locale::es_BO undef
DateTime::Locale::es_CL undef
DateTime::Locale::es_CO undef
DateTime::Locale::es_CR undef
DateTime::Locale::es_DO undef
DateTime::Locale::es_EC undef
DateTime::Locale::es_ES undef
DateTime::Locale::es_GT undef
DateTime::Locale::es_HN undef
DateTime::Locale::es_MX undef
DateTime::Locale::es_NI undef
DateTime::Locale::es_PA undef
DateTime::Locale::es_PE undef
DateTime::Locale::es_PR undef
DateTime::Locale::es_PY undef
DateTime::Locale::es_SV undef
DateTime::Locale::es_US undef
DateTime::Locale::es_UY undef
DateTime::Locale::es_VE undef
DateTime::Locale::et undef
DateTime::Locale::et_EE undef
DateTime::Locale::eu undef
DateTime::Locale::eu_ES undef
DateTime::Locale::fa undef
DateTime::Locale::fa_AF undef
DateTime::Locale::fa_IR undef
DateTime::Locale::fi undef
DateTime::Locale::fi_FI undef
DateTime::Locale::fil undef
DateTime::Locale::fil_PH undef
DateTime::Locale::fo undef
DateTime::Locale::fo_FO undef
DateTime::Locale::fr undef
DateTime::Locale::fr_BE undef
DateTime::Locale::fr_CA undef
DateTime::Locale::fr_CH undef
DateTime::Locale::fr_FR undef
DateTime::Locale::fr_LU undef
DateTime::Locale::fr_MC undef
DateTime::Locale::fr_SN undef
DateTime::Locale::fur undef
DateTime::Locale::fur_IT undef
DateTime::Locale::ga undef
DateTime::Locale::ga_IE undef
DateTime::Locale::gaa undef
DateTime::Locale::gaa_GH undef
DateTime::Locale::gez undef
DateTime::Locale::gez_ER undef
DateTime::Locale::gez_ET undef
DateTime::Locale::gl undef
DateTime::Locale::gl_ES undef
DateTime::Locale::gsw undef
DateTime::Locale::gsw_CH undef
DateTime::Locale::gu undef
DateTime::Locale::gu_IN undef
DateTime::Locale::gv undef
DateTime::Locale::gv_GB undef
DateTime::Locale::ha undef
DateTime::Locale::ha_Arab undef
DateTime::Locale::ha_Arab_NG undef
DateTime::Locale::ha_Arab_SD undef
DateTime::Locale::ha_GH undef
DateTime::Locale::ha_Latn undef
DateTime::Locale::ha_Latn_GH undef
DateTime::Locale::ha_Latn_NE undef
DateTime::Locale::ha_Latn_NG undef
DateTime::Locale::ha_NE undef
DateTime::Locale::ha_NG undef
DateTime::Locale::ha_SD undef
DateTime::Locale::haw undef
DateTime::Locale::haw_US undef
DateTime::Locale::he undef
DateTime::Locale::he_IL undef
DateTime::Locale::hi undef
DateTime::Locale::hi_IN undef
DateTime::Locale::hr undef
DateTime::Locale::hr_HR undef
DateTime::Locale::hu undef
DateTime::Locale::hu_HU undef
DateTime::Locale::hy undef
DateTime::Locale::hy_AM undef
DateTime::Locale::hy_AM_REVISED undef
DateTime::Locale::ia undef
DateTime::Locale::id undef
DateTime::Locale::id_ID undef
DateTime::Locale::ig undef
DateTime::Locale::ig_NG undef
DateTime::Locale::ii undef
DateTime::Locale::ii_CN undef
DateTime::Locale::is undef
DateTime::Locale::is_IS undef
DateTime::Locale::it undef
DateTime::Locale::it_CH undef
DateTime::Locale::it_IT undef
DateTime::Locale::iu undef
DateTime::Locale::ja undef
DateTime::Locale::ja_JP undef
DateTime::Locale::ka undef
DateTime::Locale::ka_GE undef
DateTime::Locale::kaj undef
DateTime::Locale::kaj_NG undef
DateTime::Locale::kam undef
DateTime::Locale::kam_KE undef
DateTime::Locale::kcg undef
DateTime::Locale::kcg_NG undef
DateTime::Locale::kfo undef
DateTime::Locale::kfo_CI undef
DateTime::Locale::kk undef
DateTime::Locale::kk_Cyrl undef
DateTime::Locale::kk_Cyrl_KZ undef
DateTime::Locale::kk_KZ undef
DateTime::Locale::kl undef
DateTime::Locale::kl_GL undef
DateTime::Locale::km undef
DateTime::Locale::km_KH undef
DateTime::Locale::kn undef
DateTime::Locale::kn_IN undef
DateTime::Locale::ko undef
DateTime::Locale::ko_KR undef
DateTime::Locale::kok undef
DateTime::Locale::kok_IN undef
DateTime::Locale::kpe undef
DateTime::Locale::kpe_GN undef
DateTime::Locale::kpe_LR undef
DateTime::Locale::ku undef
DateTime::Locale::ku_Arab undef
DateTime::Locale::ku_Arab_IQ undef
DateTime::Locale::ku_Arab_IR undef
DateTime::Locale::ku_Arab_SY undef
DateTime::Locale::ku_IQ undef
DateTime::Locale::ku_IR undef
DateTime::Locale::ku_Latn undef
DateTime::Locale::ku_Latn_TR undef
DateTime::Locale::ku_SY undef
DateTime::Locale::ku_TR undef
DateTime::Locale::kw undef
DateTime::Locale::kw_GB undef
DateTime::Locale::ky undef
DateTime::Locale::ky_KG undef
DateTime::Locale::ln undef
DateTime::Locale::ln_CD undef
DateTime::Locale::ln_CG undef
DateTime::Locale::lo undef
DateTime::Locale::lo_LA undef
DateTime::Locale::lt undef
DateTime::Locale::lt_LT undef
DateTime::Locale::lv undef
DateTime::Locale::lv_LV undef
DateTime::Locale::mk undef
DateTime::Locale::mk_MK undef
DateTime::Locale::ml undef
DateTime::Locale::ml_IN undef
DateTime::Locale::mn undef
DateTime::Locale::mn_CN undef
DateTime::Locale::mn_Cyrl undef
DateTime::Locale::mn_Cyrl_MN undef
DateTime::Locale::mn_MN undef
DateTime::Locale::mn_Mong undef
DateTime::Locale::mn_Mong_CN undef
DateTime::Locale::mo undef
DateTime::Locale::mr undef
DateTime::Locale::mr_IN undef
DateTime::Locale::ms undef
DateTime::Locale::ms_BN undef
DateTime::Locale::ms_MY undef
DateTime::Locale::mt undef
DateTime::Locale::mt_MT undef
DateTime::Locale::my undef
DateTime::Locale::my_MM undef
DateTime::Locale::nb undef
DateTime::Locale::nb_NO undef
DateTime::Locale::nds undef
DateTime::Locale::nds_DE undef
DateTime::Locale::ne undef
DateTime::Locale::ne_IN undef
DateTime::Locale::ne_NP undef
DateTime::Locale::nl undef
DateTime::Locale::nl_BE undef
DateTime::Locale::nl_NL undef
DateTime::Locale::nn undef
DateTime::Locale::nn_NO undef
DateTime::Locale::no undef
DateTime::Locale::nr undef
DateTime::Locale::nr_ZA undef
DateTime::Locale::nso undef
DateTime::Locale::nso_ZA undef
DateTime::Locale::ny undef
DateTime::Locale::ny_MW undef
DateTime::Locale::oc undef
DateTime::Locale::oc_FR undef
DateTime::Locale::om undef
DateTime::Locale::om_ET undef
DateTime::Locale::om_KE undef
DateTime::Locale::or undef
DateTime::Locale::or_IN undef
DateTime::Locale::pa undef
DateTime::Locale::pa_Arab undef
DateTime::Locale::pa_Arab_PK undef
DateTime::Locale::pa_Guru undef
DateTime::Locale::pa_Guru_IN undef
DateTime::Locale::pa_IN undef
DateTime::Locale::pa_PK undef
DateTime::Locale::pl undef
DateTime::Locale::pl_PL undef
DateTime::Locale::ps undef
DateTime::Locale::ps_AF undef
DateTime::Locale::pt undef
DateTime::Locale::pt_BR undef
DateTime::Locale::pt_PT undef
DateTime::Locale::ro undef
DateTime::Locale::ro_MD undef
DateTime::Locale::ro_RO undef
DateTime::Locale::root undef
DateTime::Locale::ru undef
DateTime::Locale::ru_RU undef
DateTime::Locale::ru_UA undef
DateTime::Locale::rw undef
DateTime::Locale::rw_RW undef
DateTime::Locale::sa undef
DateTime::Locale::sa_IN undef
DateTime::Locale::se undef
DateTime::Locale::se_FI undef
DateTime::Locale::se_NO undef
DateTime::Locale::sh undef
DateTime::Locale::sh_BA undef
DateTime::Locale::sh_CS undef
DateTime::Locale::sh_YU undef
DateTime::Locale::si undef
DateTime::Locale::si_LK undef
DateTime::Locale::sid undef
DateTime::Locale::sid_ET undef
DateTime::Locale::sk undef
DateTime::Locale::sk_SK undef
DateTime::Locale::sl undef
DateTime::Locale::sl_SI undef
DateTime::Locale::so undef
DateTime::Locale::so_DJ undef
DateTime::Locale::so_ET undef
DateTime::Locale::so_KE undef
DateTime::Locale::so_SO undef
DateTime::Locale::sq undef
DateTime::Locale::sq_AL undef
DateTime::Locale::sr undef
DateTime::Locale::sr_BA undef
DateTime::Locale::sr_CS undef
DateTime::Locale::sr_Cyrl undef
DateTime::Locale::sr_Cyrl_BA undef
DateTime::Locale::sr_Cyrl_CS undef
DateTime::Locale::sr_Cyrl_ME undef
DateTime::Locale::sr_Cyrl_RS undef
DateTime::Locale::sr_Cyrl_YU undef
DateTime::Locale::sr_Latn undef
DateTime::Locale::sr_Latn_BA undef
DateTime::Locale::sr_Latn_CS undef
DateTime::Locale::sr_Latn_ME undef
DateTime::Locale::sr_Latn_RS undef
DateTime::Locale::sr_Latn_YU undef
DateTime::Locale::sr_ME undef
DateTime::Locale::sr_RS undef
DateTime::Locale::sr_YU undef
DateTime::Locale::ss undef
DateTime::Locale::ss_SZ undef
DateTime::Locale::ss_ZA undef
DateTime::Locale::st undef
DateTime::Locale::st_LS undef
DateTime::Locale::st_ZA undef
DateTime::Locale::sv undef
DateTime::Locale::sv_FI undef
DateTime::Locale::sv_SE undef
DateTime::Locale::sw undef
DateTime::Locale::sw_KE undef
DateTime::Locale::sw_TZ undef
DateTime::Locale::syr undef
DateTime::Locale::syr_SY undef
DateTime::Locale::ta undef
DateTime::Locale::ta_IN undef
DateTime::Locale::te undef
DateTime::Locale::te_IN undef
DateTime::Locale::tg undef
DateTime::Locale::tg_Cyrl undef
DateTime::Locale::tg_Cyrl_TJ undef
DateTime::Locale::tg_TJ undef
DateTime::Locale::th undef
DateTime::Locale::th_TH undef
DateTime::Locale::ti undef
DateTime::Locale::ti_ER undef
DateTime::Locale::ti_ET undef
DateTime::Locale::tig undef
DateTime::Locale::tig_ER undef
DateTime::Locale::tl undef
DateTime::Locale::tn undef
DateTime::Locale::tn_ZA undef
DateTime::Locale::to undef
DateTime::Locale::to_TO undef
DateTime::Locale::tr undef
DateTime::Locale::tr_TR undef
DateTime::Locale::trv undef
DateTime::Locale::trv_TW undef
DateTime::Locale::ts undef
DateTime::Locale::ts_ZA undef
DateTime::Locale::tt undef
DateTime::Locale::tt_RU undef
DateTime::Locale::ug undef
DateTime::Locale::ug_Arab undef
DateTime::Locale::ug_Arab_CN undef
DateTime::Locale::ug_CN undef
DateTime::Locale::uk undef
DateTime::Locale::uk_UA undef
DateTime::Locale::ur undef
DateTime::Locale::ur_IN undef
DateTime::Locale::ur_PK undef
DateTime::Locale::uz undef
DateTime::Locale::uz_AF undef
DateTime::Locale::uz_Arab undef
DateTime::Locale::uz_Arab_AF undef
DateTime::Locale::uz_Cyrl undef
DateTime::Locale::uz_Cyrl_UZ undef
DateTime::Locale::uz_Latn undef
DateTime::Locale::uz_Latn_UZ undef
DateTime::Locale::uz_UZ undef
DateTime::Locale::ve undef
DateTime::Locale::ve_ZA undef
DateTime::Locale::vi undef
DateTime::Locale::vi_VN undef
DateTime::Locale::wal undef
DateTime::Locale::wal_ET undef
DateTime::Locale::wo undef
DateTime::Locale::wo_Latn undef
DateTime::Locale::wo_Latn_SN undef
DateTime::Locale::wo_SN undef
DateTime::Locale::xh undef
DateTime::Locale::xh_ZA undef
DateTime::Locale::yo undef
DateTime::Locale::yo_NG undef
DateTime::Locale::zh undef
DateTime::Locale::zh_CN undef
DateTime::Locale::zh_HK undef
DateTime::Locale::zh_Hans undef
DateTime::Locale::zh_Hans_CN undef
DateTime::Locale::zh_Hans_HK undef
DateTime::Locale::zh_Hans_MO undef
DateTime::Locale::zh_Hans_SG undef
DateTime::Locale::zh_Hant undef
DateTime::Locale::zh_Hant_HK undef
DateTime::Locale::zh_Hant_MO undef
DateTime::Locale::zh_Hant_TW undef
DateTime::Locale::zh_MO undef
DateTime::Locale::zh_SG undef
DateTime::Locale::zh_TW undef
DateTime::Locale::zu undef
DateTime::Locale::zu_ZA undef
requirements:
List::MoreUtils 0
Module::Build 0
Params::Validate 0.91
perl 5.006
DateTime-TimeZone-1.69
pathname: D/DR/DROLSKY/DateTime-TimeZone-1.69.tar.gz
provides:
DateTime::TimeZone 1.69
DateTime::TimeZone::Africa::Abidjan 1.69
DateTime::TimeZone::Africa::Accra 1.69
DateTime::TimeZone::Africa::Addis_Ababa 1.69
DateTime::TimeZone::Africa::Algiers 1.69
DateTime::TimeZone::Africa::Asmara 1.69
DateTime::TimeZone::Africa::Bamako 1.69
DateTime::TimeZone::Africa::Bangui 1.69
DateTime::TimeZone::Africa::Banjul 1.69
DateTime::TimeZone::Africa::Bissau 1.69
DateTime::TimeZone::Africa::Blantyre 1.69
DateTime::TimeZone::Africa::Brazzaville 1.69
DateTime::TimeZone::Africa::Bujumbura 1.69
DateTime::TimeZone::Africa::Cairo 1.69
DateTime::TimeZone::Africa::Casablanca 1.69
DateTime::TimeZone::Africa::Ceuta 1.69
DateTime::TimeZone::Africa::Conakry 1.69
DateTime::TimeZone::Africa::Dakar 1.69
DateTime::TimeZone::Africa::Dar_es_Salaam 1.69
DateTime::TimeZone::Africa::Djibouti 1.69
DateTime::TimeZone::Africa::Douala 1.69
DateTime::TimeZone::Africa::El_Aaiun 1.69
DateTime::TimeZone::Africa::Freetown 1.69
DateTime::TimeZone::Africa::Gaborone 1.69
DateTime::TimeZone::Africa::Harare 1.69
DateTime::TimeZone::Africa::Johannesburg 1.69
DateTime::TimeZone::Africa::Kampala 1.69
DateTime::TimeZone::Africa::Khartoum 1.69
DateTime::TimeZone::Africa::Kigali 1.69
DateTime::TimeZone::Africa::Kinshasa 1.69
DateTime::TimeZone::Africa::Lagos 1.69
DateTime::TimeZone::Africa::Libreville 1.69
DateTime::TimeZone::Africa::Lome 1.69
DateTime::TimeZone::Africa::Luanda 1.69
DateTime::TimeZone::Africa::Lubumbashi 1.69
DateTime::TimeZone::Africa::Lusaka 1.69
DateTime::TimeZone::Africa::Malabo 1.69
DateTime::TimeZone::Africa::Maputo 1.69
DateTime::TimeZone::Africa::Maseru 1.69
DateTime::TimeZone::Africa::Mbabane 1.69
DateTime::TimeZone::Africa::Mogadishu 1.69
DateTime::TimeZone::Africa::Monrovia 1.69
DateTime::TimeZone::Africa::Nairobi 1.69
DateTime::TimeZone::Africa::Ndjamena 1.69
DateTime::TimeZone::Africa::Niamey 1.69
DateTime::TimeZone::Africa::Nouakchott 1.69
DateTime::TimeZone::Africa::Ouagadougou 1.69
DateTime::TimeZone::Africa::Porto_Novo 1.69
DateTime::TimeZone::Africa::Sao_Tome 1.69
DateTime::TimeZone::Africa::Tripoli 1.69
DateTime::TimeZone::Africa::Tunis 1.69
DateTime::TimeZone::Africa::Windhoek 1.69
DateTime::TimeZone::America::Adak 1.69
DateTime::TimeZone::America::Anchorage 1.69
DateTime::TimeZone::America::Antigua 1.69
DateTime::TimeZone::America::Araguaina 1.69
DateTime::TimeZone::America::Argentina::Buenos_Aires 1.69
DateTime::TimeZone::America::Argentina::Catamarca 1.69
DateTime::TimeZone::America::Argentina::Cordoba 1.69
DateTime::TimeZone::America::Argentina::Jujuy 1.69
DateTime::TimeZone::America::Argentina::La_Rioja 1.69
DateTime::TimeZone::America::Argentina::Mendoza 1.69
DateTime::TimeZone::America::Argentina::Rio_Gallegos 1.69
DateTime::TimeZone::America::Argentina::Salta 1.69
DateTime::TimeZone::America::Argentina::San_Juan 1.69
DateTime::TimeZone::America::Argentina::San_Luis 1.69
DateTime::TimeZone::America::Argentina::Tucuman 1.69
DateTime::TimeZone::America::Argentina::Ushuaia 1.69
DateTime::TimeZone::America::Asuncion 1.69
DateTime::TimeZone::America::Atikokan 1.69
DateTime::TimeZone::America::Bahia 1.69
DateTime::TimeZone::America::Bahia_Banderas 1.69
DateTime::TimeZone::America::Barbados 1.69
DateTime::TimeZone::America::Belem 1.69
DateTime::TimeZone::America::Belize 1.69
DateTime::TimeZone::America::Blanc_Sablon 1.69
DateTime::TimeZone::America::Boa_Vista 1.69
DateTime::TimeZone::America::Bogota 1.69
DateTime::TimeZone::America::Boise 1.69
DateTime::TimeZone::America::Cambridge_Bay 1.69
DateTime::TimeZone::America::Campo_Grande 1.69
DateTime::TimeZone::America::Cancun 1.69
DateTime::TimeZone::America::Caracas 1.69
DateTime::TimeZone::America::Cayenne 1.69
DateTime::TimeZone::America::Cayman 1.69
DateTime::TimeZone::America::Chicago 1.69
DateTime::TimeZone::America::Chihuahua 1.69
DateTime::TimeZone::America::Costa_Rica 1.69
DateTime::TimeZone::America::Creston 1.69
DateTime::TimeZone::America::Cuiaba 1.69
DateTime::TimeZone::America::Curacao 1.69
DateTime::TimeZone::America::Danmarkshavn 1.69
DateTime::TimeZone::America::Dawson 1.69
DateTime::TimeZone::America::Dawson_Creek 1.69
DateTime::TimeZone::America::Denver 1.69
DateTime::TimeZone::America::Detroit 1.69
DateTime::TimeZone::America::Edmonton 1.69
DateTime::TimeZone::America::Eirunepe 1.69
DateTime::TimeZone::America::El_Salvador 1.69
DateTime::TimeZone::America::Fortaleza 1.69
DateTime::TimeZone::America::Glace_Bay 1.69
DateTime::TimeZone::America::Godthab 1.69
DateTime::TimeZone::America::Goose_Bay 1.69
DateTime::TimeZone::America::Grand_Turk 1.69
DateTime::TimeZone::America::Guatemala 1.69
DateTime::TimeZone::America::Guayaquil 1.69
DateTime::TimeZone::America::Guyana 1.69
DateTime::TimeZone::America::Halifax 1.69
DateTime::TimeZone::America::Havana 1.69
DateTime::TimeZone::America::Hermosillo 1.69
DateTime::TimeZone::America::Indiana::Indianapolis 1.69
DateTime::TimeZone::America::Indiana::Knox 1.69
DateTime::TimeZone::America::Indiana::Marengo 1.69
DateTime::TimeZone::America::Indiana::Petersburg 1.69
DateTime::TimeZone::America::Indiana::Tell_City 1.69
DateTime::TimeZone::America::Indiana::Vevay 1.69
DateTime::TimeZone::America::Indiana::Vincennes 1.69
DateTime::TimeZone::America::Indiana::Winamac 1.69
DateTime::TimeZone::America::Inuvik 1.69
DateTime::TimeZone::America::Iqaluit 1.69
DateTime::TimeZone::America::Jamaica 1.69
DateTime::TimeZone::America::Juneau 1.69
DateTime::TimeZone::America::Kentucky::Louisville 1.69
DateTime::TimeZone::America::Kentucky::Monticello 1.69
DateTime::TimeZone::America::La_Paz 1.69
DateTime::TimeZone::America::Lima 1.69
DateTime::TimeZone::America::Los_Angeles 1.69
DateTime::TimeZone::America::Maceio 1.69
DateTime::TimeZone::America::Managua 1.69
DateTime::TimeZone::America::Manaus 1.69
DateTime::TimeZone::America::Martinique 1.69
DateTime::TimeZone::America::Matamoros 1.69
DateTime::TimeZone::America::Mazatlan 1.69
DateTime::TimeZone::America::Menominee 1.69
DateTime::TimeZone::America::Merida 1.69
DateTime::TimeZone::America::Metlakatla 1.69
DateTime::TimeZone::America::Mexico_City 1.69
DateTime::TimeZone::America::Miquelon 1.69
DateTime::TimeZone::America::Moncton 1.69
DateTime::TimeZone::America::Monterrey 1.69
DateTime::TimeZone::America::Montevideo 1.69
DateTime::TimeZone::America::Montreal 1.69
DateTime::TimeZone::America::Nassau 1.69
DateTime::TimeZone::America::New_York 1.69
DateTime::TimeZone::America::Nipigon 1.69
DateTime::TimeZone::America::Nome 1.69
DateTime::TimeZone::America::Noronha 1.69
DateTime::TimeZone::America::North_Dakota::Beulah 1.69
DateTime::TimeZone::America::North_Dakota::Center 1.69
DateTime::TimeZone::America::North_Dakota::New_Salem 1.69
DateTime::TimeZone::America::Ojinaga 1.69
DateTime::TimeZone::America::Panama 1.69
DateTime::TimeZone::America::Pangnirtung 1.69
DateTime::TimeZone::America::Paramaribo 1.69
DateTime::TimeZone::America::Phoenix 1.69
DateTime::TimeZone::America::Port_au_Prince 1.69
DateTime::TimeZone::America::Port_of_Spain 1.69
DateTime::TimeZone::America::Porto_Velho 1.69
DateTime::TimeZone::America::Puerto_Rico 1.69
DateTime::TimeZone::America::Rainy_River 1.69
DateTime::TimeZone::America::Rankin_Inlet 1.69
DateTime::TimeZone::America::Recife 1.69
DateTime::TimeZone::America::Regina 1.69
DateTime::TimeZone::America::Resolute 1.69
DateTime::TimeZone::America::Rio_Branco 1.69
DateTime::TimeZone::America::Santa_Isabel 1.69
DateTime::TimeZone::America::Santarem 1.69
DateTime::TimeZone::America::Santiago 1.69
DateTime::TimeZone::America::Santo_Domingo 1.69
DateTime::TimeZone::America::Sao_Paulo 1.69
DateTime::TimeZone::America::Scoresbysund 1.69
DateTime::TimeZone::America::Sitka 1.69
DateTime::TimeZone::America::St_Johns 1.69
DateTime::TimeZone::America::Swift_Current 1.69
DateTime::TimeZone::America::Tegucigalpa 1.69
DateTime::TimeZone::America::Thule 1.69
DateTime::TimeZone::America::Thunder_Bay 1.69
DateTime::TimeZone::America::Tijuana 1.69
DateTime::TimeZone::America::Toronto 1.69
DateTime::TimeZone::America::Vancouver 1.69
DateTime::TimeZone::America::Whitehorse 1.69
DateTime::TimeZone::America::Winnipeg 1.69
DateTime::TimeZone::America::Yakutat 1.69
DateTime::TimeZone::America::Yellowknife 1.69
DateTime::TimeZone::Antarctica::Casey 1.69
DateTime::TimeZone::Antarctica::Davis 1.69
DateTime::TimeZone::Antarctica::DumontDUrville 1.69
DateTime::TimeZone::Antarctica::Macquarie 1.69
DateTime::TimeZone::Antarctica::Mawson 1.69
DateTime::TimeZone::Antarctica::Palmer 1.69
DateTime::TimeZone::Antarctica::Rothera 1.69
DateTime::TimeZone::Antarctica::Syowa 1.69
DateTime::TimeZone::Antarctica::Troll 1.69
DateTime::TimeZone::Antarctica::Vostok 1.69
DateTime::TimeZone::Asia::Aden 1.69
DateTime::TimeZone::Asia::Almaty 1.69
DateTime::TimeZone::Asia::Amman 1.69
DateTime::TimeZone::Asia::Anadyr 1.69
DateTime::TimeZone::Asia::Aqtau 1.69
DateTime::TimeZone::Asia::Aqtobe 1.69
DateTime::TimeZone::Asia::Ashgabat 1.69
DateTime::TimeZone::Asia::Baghdad 1.69
DateTime::TimeZone::Asia::Bahrain 1.69
DateTime::TimeZone::Asia::Baku 1.69
DateTime::TimeZone::Asia::Bangkok 1.69
DateTime::TimeZone::Asia::Beirut 1.69
DateTime::TimeZone::Asia::Bishkek 1.69
DateTime::TimeZone::Asia::Brunei 1.69
DateTime::TimeZone::Asia::Choibalsan 1.69
DateTime::TimeZone::Asia::Chongqing 1.69
DateTime::TimeZone::Asia::Colombo 1.69
DateTime::TimeZone::Asia::Damascus 1.69
DateTime::TimeZone::Asia::Dhaka 1.69
DateTime::TimeZone::Asia::Dili 1.69
DateTime::TimeZone::Asia::Dubai 1.69
DateTime::TimeZone::Asia::Dushanbe 1.69
DateTime::TimeZone::Asia::Gaza 1.69
DateTime::TimeZone::Asia::Harbin 1.69
DateTime::TimeZone::Asia::Hebron 1.69
DateTime::TimeZone::Asia::Ho_Chi_Minh 1.69
DateTime::TimeZone::Asia::Hong_Kong 1.69
DateTime::TimeZone::Asia::Hovd 1.69
DateTime::TimeZone::Asia::Irkutsk 1.69
DateTime::TimeZone::Asia::Jakarta 1.69
DateTime::TimeZone::Asia::Jayapura 1.69
DateTime::TimeZone::Asia::Jerusalem 1.69
DateTime::TimeZone::Asia::Kabul 1.69
DateTime::TimeZone::Asia::Kamchatka 1.69
DateTime::TimeZone::Asia::Karachi 1.69
DateTime::TimeZone::Asia::Kashgar 1.69
DateTime::TimeZone::Asia::Kathmandu 1.69
DateTime::TimeZone::Asia::Khandyga 1.69
DateTime::TimeZone::Asia::Kolkata 1.69
DateTime::TimeZone::Asia::Krasnoyarsk 1.69
DateTime::TimeZone::Asia::Kuala_Lumpur 1.69
DateTime::TimeZone::Asia::Kuching 1.69
DateTime::TimeZone::Asia::Kuwait 1.69
DateTime::TimeZone::Asia::Macau 1.69
DateTime::TimeZone::Asia::Magadan 1.69
DateTime::TimeZone::Asia::Makassar 1.69
DateTime::TimeZone::Asia::Manila 1.69
DateTime::TimeZone::Asia::Muscat 1.69
DateTime::TimeZone::Asia::Nicosia 1.69
DateTime::TimeZone::Asia::Novokuznetsk 1.69
DateTime::TimeZone::Asia::Novosibirsk 1.69
DateTime::TimeZone::Asia::Omsk 1.69
DateTime::TimeZone::Asia::Oral 1.69
DateTime::TimeZone::Asia::Phnom_Penh 1.69
DateTime::TimeZone::Asia::Pontianak 1.69
DateTime::TimeZone::Asia::Pyongyang 1.69
DateTime::TimeZone::Asia::Qatar 1.69
DateTime::TimeZone::Asia::Qyzylorda 1.69
DateTime::TimeZone::Asia::Rangoon 1.69
DateTime::TimeZone::Asia::Riyadh 1.69
DateTime::TimeZone::Asia::Sakhalin 1.69
DateTime::TimeZone::Asia::Samarkand 1.69
DateTime::TimeZone::Asia::Seoul 1.69
DateTime::TimeZone::Asia::Shanghai 1.69
DateTime::TimeZone::Asia::Singapore 1.69
DateTime::TimeZone::Asia::Taipei 1.69
DateTime::TimeZone::Asia::Tashkent 1.69
DateTime::TimeZone::Asia::Tbilisi 1.69
DateTime::TimeZone::Asia::Tehran 1.69
DateTime::TimeZone::Asia::Thimphu 1.69
DateTime::TimeZone::Asia::Tokyo 1.69
DateTime::TimeZone::Asia::Ulaanbaatar 1.69
DateTime::TimeZone::Asia::Urumqi 1.69
DateTime::TimeZone::Asia::Ust_Nera 1.69
DateTime::TimeZone::Asia::Vientiane 1.69
DateTime::TimeZone::Asia::Vladivostok 1.69
DateTime::TimeZone::Asia::Yakutsk 1.69
DateTime::TimeZone::Asia::Yekaterinburg 1.69
DateTime::TimeZone::Asia::Yerevan 1.69
DateTime::TimeZone::Atlantic::Azores 1.69
DateTime::TimeZone::Atlantic::Bermuda 1.69
DateTime::TimeZone::Atlantic::Canary 1.69
DateTime::TimeZone::Atlantic::Cape_Verde 1.69
DateTime::TimeZone::Atlantic::Faroe 1.69
DateTime::TimeZone::Atlantic::Madeira 1.69
DateTime::TimeZone::Atlantic::Reykjavik 1.69
DateTime::TimeZone::Atlantic::South_Georgia 1.69
DateTime::TimeZone::Atlantic::St_Helena 1.69
DateTime::TimeZone::Atlantic::Stanley 1.69
DateTime::TimeZone::Australia::Adelaide 1.69
DateTime::TimeZone::Australia::Brisbane 1.69
DateTime::TimeZone::Australia::Broken_Hill 1.69
DateTime::TimeZone::Australia::Currie 1.69
DateTime::TimeZone::Australia::Darwin 1.69
DateTime::TimeZone::Australia::Eucla 1.69
DateTime::TimeZone::Australia::Hobart 1.69
DateTime::TimeZone::Australia::Lindeman 1.69
DateTime::TimeZone::Australia::Lord_Howe 1.69
DateTime::TimeZone::Australia::Melbourne 1.69
DateTime::TimeZone::Australia::Perth 1.69
DateTime::TimeZone::Australia::Sydney 1.69
DateTime::TimeZone::CET 1.69
DateTime::TimeZone::CST6CDT 1.69
DateTime::TimeZone::Catalog 1.69
DateTime::TimeZone::EET 1.69
DateTime::TimeZone::EST 1.69
DateTime::TimeZone::EST5EDT 1.69
DateTime::TimeZone::Europe::Amsterdam 1.69
DateTime::TimeZone::Europe::Andorra 1.69
DateTime::TimeZone::Europe::Athens 1.69
DateTime::TimeZone::Europe::Belgrade 1.69
DateTime::TimeZone::Europe::Berlin 1.69
DateTime::TimeZone::Europe::Brussels 1.69
DateTime::TimeZone::Europe::Bucharest 1.69
DateTime::TimeZone::Europe::Budapest 1.69
DateTime::TimeZone::Europe::Chisinau 1.69
DateTime::TimeZone::Europe::Copenhagen 1.69
DateTime::TimeZone::Europe::Dublin 1.69
DateTime::TimeZone::Europe::Gibraltar 1.69
DateTime::TimeZone::Europe::Helsinki 1.69
DateTime::TimeZone::Europe::Istanbul 1.69
DateTime::TimeZone::Europe::Kaliningrad 1.69
DateTime::TimeZone::Europe::Kiev 1.69
DateTime::TimeZone::Europe::Lisbon 1.69
DateTime::TimeZone::Europe::London 1.69
DateTime::TimeZone::Europe::Luxembourg 1.69
DateTime::TimeZone::Europe::Madrid 1.69
DateTime::TimeZone::Europe::Malta 1.69
DateTime::TimeZone::Europe::Minsk 1.69
DateTime::TimeZone::Europe::Monaco 1.69
DateTime::TimeZone::Europe::Moscow 1.69
DateTime::TimeZone::Europe::Oslo 1.69
DateTime::TimeZone::Europe::Paris 1.69
DateTime::TimeZone::Europe::Prague 1.69
DateTime::TimeZone::Europe::Riga 1.69
DateTime::TimeZone::Europe::Rome 1.69
DateTime::TimeZone::Europe::Samara 1.69
DateTime::TimeZone::Europe::Simferopol 1.69
DateTime::TimeZone::Europe::Sofia 1.69
DateTime::TimeZone::Europe::Stockholm 1.69
DateTime::TimeZone::Europe::Tallinn 1.69
DateTime::TimeZone::Europe::Tirane 1.69
DateTime::TimeZone::Europe::Uzhgorod 1.69
DateTime::TimeZone::Europe::Vienna 1.69
DateTime::TimeZone::Europe::Vilnius 1.69
DateTime::TimeZone::Europe::Volgograd 1.69
DateTime::TimeZone::Europe::Warsaw 1.69
DateTime::TimeZone::Europe::Zaporozhye 1.69
DateTime::TimeZone::Europe::Zurich 1.69
DateTime::TimeZone::Floating 1.69
DateTime::TimeZone::HST 1.69
DateTime::TimeZone::Indian::Antananarivo 1.69
DateTime::TimeZone::Indian::Chagos 1.69
DateTime::TimeZone::Indian::Christmas 1.69
DateTime::TimeZone::Indian::Cocos 1.69
DateTime::TimeZone::Indian::Comoro 1.69
DateTime::TimeZone::Indian::Kerguelen 1.69
DateTime::TimeZone::Indian::Mahe 1.69
DateTime::TimeZone::Indian::Maldives 1.69
DateTime::TimeZone::Indian::Mauritius 1.69
DateTime::TimeZone::Indian::Mayotte 1.69
DateTime::TimeZone::Indian::Reunion 1.69
DateTime::TimeZone::Local 1.69
DateTime::TimeZone::Local::Unix 1.69
DateTime::TimeZone::Local::VMS 1.69
DateTime::TimeZone::Local::Win32 1.69
DateTime::TimeZone::MET 1.69
DateTime::TimeZone::MST 1.69
DateTime::TimeZone::MST7MDT 1.69
DateTime::TimeZone::OffsetOnly 1.69
DateTime::TimeZone::OlsonDB 1.69
DateTime::TimeZone::OlsonDB::Change 1.69
DateTime::TimeZone::OlsonDB::Observance 1.69
DateTime::TimeZone::OlsonDB::Rule 1.69
DateTime::TimeZone::OlsonDB::Zone 1.69
DateTime::TimeZone::PST8PDT 1.69
DateTime::TimeZone::Pacific::Apia 1.69
DateTime::TimeZone::Pacific::Auckland 1.69
DateTime::TimeZone::Pacific::Chatham 1.69
DateTime::TimeZone::Pacific::Chuuk 1.69
DateTime::TimeZone::Pacific::Easter 1.69
DateTime::TimeZone::Pacific::Efate 1.69
DateTime::TimeZone::Pacific::Enderbury 1.69
DateTime::TimeZone::Pacific::Fakaofo 1.69
DateTime::TimeZone::Pacific::Fiji 1.69
DateTime::TimeZone::Pacific::Funafuti 1.69
DateTime::TimeZone::Pacific::Galapagos 1.69
DateTime::TimeZone::Pacific::Gambier 1.69
DateTime::TimeZone::Pacific::Guadalcanal 1.69
DateTime::TimeZone::Pacific::Guam 1.69
DateTime::TimeZone::Pacific::Honolulu 1.69
DateTime::TimeZone::Pacific::Kiritimati 1.69
DateTime::TimeZone::Pacific::Kosrae 1.69
DateTime::TimeZone::Pacific::Kwajalein 1.69
DateTime::TimeZone::Pacific::Majuro 1.69
DateTime::TimeZone::Pacific::Marquesas 1.69
DateTime::TimeZone::Pacific::Midway 1.69
DateTime::TimeZone::Pacific::Nauru 1.69
DateTime::TimeZone::Pacific::Niue 1.69
DateTime::TimeZone::Pacific::Norfolk 1.69
DateTime::TimeZone::Pacific::Noumea 1.69
DateTime::TimeZone::Pacific::Pago_Pago 1.69
DateTime::TimeZone::Pacific::Palau 1.69
DateTime::TimeZone::Pacific::Pitcairn 1.69
DateTime::TimeZone::Pacific::Pohnpei 1.69
DateTime::TimeZone::Pacific::Port_Moresby 1.69
DateTime::TimeZone::Pacific::Rarotonga 1.69
DateTime::TimeZone::Pacific::Saipan 1.69
DateTime::TimeZone::Pacific::Tahiti 1.69
DateTime::TimeZone::Pacific::Tarawa 1.69
DateTime::TimeZone::Pacific::Tongatapu 1.69
DateTime::TimeZone::Pacific::Wake 1.69
DateTime::TimeZone::Pacific::Wallis 1.69
DateTime::TimeZone::UTC 1.69
DateTime::TimeZone::WET 1.69
requirements:
Class::Load 0
Class::Singleton 1.03
Cwd 3
ExtUtils::MakeMaker 6.30
File::Basename 0
File::Compare 0
File::Find 0
File::Spec 0
List::Util 0
Params::Validate 0.72
constant 0
parent 0
strict 0
vars 0
warnings 0
Devel-CheckLib-1.07
pathname: M/MA/MATTN/Devel-CheckLib-1.07.tar.gz
provides:
Devel::CheckLib 1.07
requirements:
Exporter 0
ExtUtils::MakeMaker 0
File::Spec 0
File::Temp 0.16
IO::CaptureOutput 1.0801
Test::More 0.62
perl 5.00405
Devel-StackTrace-2.01
pathname: D/DR/DROLSKY/Devel-StackTrace-2.01.tar.gz
provides:
Devel::StackTrace 2.01
Devel::StackTrace::Frame 2.01
requirements:
ExtUtils::MakeMaker 0
File::Spec 0
Scalar::Util 0
overload 0
perl 5.006
strict 0
warnings 0
Devel-StackTrace-AsHTML-0.15
pathname: M/MI/MIYAGAWA/Devel-StackTrace-AsHTML-0.15.tar.gz
provides:
Devel::StackTrace::AsHTML 0.15
requirements:
Devel::StackTrace 0
ExtUtils::MakeMaker 0
Devel-Symdump-2.17
pathname: A/AN/ANDK/Devel-Symdump-2.17.tar.gz
provides:
Devel::Symdump 2.17
Devel::Symdump::Export undef
requirements:
Compress::Zlib 0
ExtUtils::MakeMaker 0
Test::More 0
perl 5.004
Digest-BubbleBabble-0.02
pathname: B/BT/BTROTT/Digest-BubbleBabble-0.02.tar.gz
provides:
Digest::BubbleBabble 0.02
requirements:
ExtUtils::MakeMaker 6.42
Filter::Util::Call 0
Test::More 0
perl 5.008001
Digest-HMAC-1.03
pathname: G/GA/GAAS/Digest-HMAC-1.03.tar.gz
provides:
Digest::HMAC 1.03
Digest::HMAC_MD5 1.01
Digest::HMAC_SHA1 1.03
requirements:
Digest::MD5 2
Digest::SHA 1
ExtUtils::MakeMaker 0
perl 5.004
Digest-MD2-2.04
pathname: G/GA/GAAS/Digest-MD2-2.04.tar.gz
provides:
Digest::MD2 2.04
requirements:
ExtUtils::MakeMaker 0
Digest-SHA1-2.13
pathname: G/GA/GAAS/Digest-SHA1-2.13.tar.gz
provides:
Digest::SHA1 2.13
requirements:
Digest::base 1.00
ExtUtils::MakeMaker 0
perl 5.004
Dist-CheckConflicts-0.11
pathname: D/DO/DOY/Dist-CheckConflicts-0.11.tar.gz
provides:
Dist::CheckConflicts 0.11
requirements:
Carp 0
Exporter 0
ExtUtils::MakeMaker 6.30
Module::Runtime 0.009
base 0
strict 0
warnings 0
Email-Abstract-3.008
pathname: R/RJ/RJBS/Email-Abstract-3.008.tar.gz
provides:
Email::Abstract 3.008
Email::Abstract::EmailMIME 3.008
Email::Abstract::EmailSimple 3.008
Email::Abstract::MIMEEntity 3.008
Email::Abstract::MailInternet 3.008
Email::Abstract::MailMessage 3.008
Email::Abstract::Plugin 3.008
requirements:
Carp 0
Email::Simple 1.998
ExtUtils::MakeMaker 0
MRO::Compat 0
Module::Pluggable 1.5
Scalar::Util 0
perl 5.006
strict 0
warnings 0
Email-Address-1.908
pathname: R/RJ/RJBS/Email-Address-1.908.tar.gz
provides:
Email::Address 1.908
requirements:
ExtUtils::MakeMaker 0
overload 0
strict 0
warnings 0
Email-Date-Format-1.005
pathname: R/RJ/RJBS/Email-Date-Format-1.005.tar.gz
provides:
Email::Date::Format 1.005
requirements:
Exporter 5.57
ExtUtils::MakeMaker 0
Time::Local 0
strict 0
warnings 0
Email-MIME-1.937
pathname: R/RJ/RJBS/Email-MIME-1.937.tar.gz
provides:
Email::MIME 1.937
Email::MIME::Creator 1.937
Email::MIME::Encode 1.937
Email::MIME::Header 1.937
Email::MIME::Modifier 1.937
requirements:
Carp 0
Email::Address 0
Email::MIME::ContentType 1.016
Email::MIME::Encodings 1.314
Email::MessageID 0
Email::Simple 2.206
Email::Simple::Creator 0
Email::Simple::Header 0
Encode 1.9801
ExtUtils::MakeMaker 0
MIME::Base64 0
MIME::Types 1.13
Scalar::Util 0
parent 0
perl 5.008001
strict 0
warnings 0
Email-MIME-Attachment-Stripper-1.317
pathname: R/RJ/RJBS/Email-MIME-Attachment-Stripper-1.317.tar.gz
provides:
Email::MIME::Attachment::Stripper 1.317
requirements:
Carp 0
Email::Abstract 0
Email::MIME 1.861
Email::MIME::ContentType 1.016
ExtUtils::MakeMaker 6.30
strict 0
warnings 0
Email-MIME-ContentType-1.018
pathname: R/RJ/RJBS/Email-MIME-ContentType-1.018.tar.gz
provides:
Email::MIME::ContentType 1.018
requirements:
Carp 0
Exporter 5.57
ExtUtils::MakeMaker 0
strict 0
warnings 0
Email-MIME-Encodings-1.315
pathname: R/RJ/RJBS/Email-MIME-Encodings-1.315.tar.gz
provides:
Email::MIME::Encodings 1.315
requirements:
Carp 0
ExtUtils::MakeMaker 6.30
MIME::Base64 3.05
MIME::QuotedPrint 3.05
strict 0
warnings 0
Email-MessageID-1.406
pathname: R/RJ/RJBS/Email-MessageID-1.406.tar.gz
provides:
Email::MessageID 1.406
requirements:
ExtUtils::MakeMaker 0
Sys::Hostname 0
overload 0
strict 0
warnings 0
Email-Reply-1.204
pathname: R/RJ/RJBS/Email-Reply-1.204.tar.gz
provides:
Email::Reply 1.204
requirements:
Email::Abstract 2.01
Email::Address 1.80
Email::MIME 1.82
Exporter 5.57
ExtUtils::MakeMaker 0
strict 0
warnings 0
Email-Send-2.201
pathname: R/RJ/RJBS/Email-Send-2.201.tar.gz
provides:
Email::Send 2.201
Email::Send::NNTP 2.201
Email::Send::Qmail 2.201
Email::Send::SMTP 2.201
Email::Send::Sendmail 2.201
Email::Send::Test 2.201
requirements:
Email::Abstract 0
Email::Address 1.80
Email::Simple 1.92
ExtUtils::MakeMaker 0
File::Spec 0
Module::Pluggable 2.97
Net::SMTP 0
Return::Value 0
Scalar::Util 1.02
Symbol 0
perl 5.006
strict 0
vars 0
Email-Simple-2.210
pathname: R/RJ/RJBS/Email-Simple-2.210.tar.gz
provides:
Email::Simple 2.210
Email::Simple::Creator 2.210
Email::Simple::Header 2.210
requirements:
Carp 0
Email::Date::Format 0
ExtUtils::MakeMaker 0
perl 5.008
strict 0
warnings 0
Encode-Detect-1.01
pathname: J/JG/JGMYERS/Encode-Detect-1.01.tar.gz
provides:
Encode::Detect 1.01
Encode::Detect::Detector 1.01
requirements:
ExtUtils::CBuilder 0
Module::Build 0
Encode-Locale-1.05
pathname: G/GA/GAAS/Encode-Locale-1.05.tar.gz
provides:
Encode::Locale 1.05
requirements:
Encode 2
Encode::Alias 0
ExtUtils::MakeMaker 0
perl 5.008
Eval-LineNumbers-0.34
pathname: M/MU/MUIR/modules/Eval-LineNumbers-0.34.tar.gz
provides:
Eval::LineNumbers 0.34
requirements:
Exporter 5.57
ExtUtils::MakeMaker 0
Event-1.26
pathname: E/ET/ETJ/Event-1.26.tar.gz
provides:
Event 1.26
Event::Event::Dataful 1.26
Event::Event::Io 1.26
Event::MakeMaker undef
Event::Watcher undef
Event::Watcher::Tied undef
Event::generic undef
Event::generic::Source undef
Event::group undef
Event::idle undef
Event::io undef
Event::msg undef
Event::process undef
Event::semaphore undef
Event::signal undef
Event::timer undef
Event::type undef
Event::var undef
requirements:
ExtUtils::MakeMaker 0
Test 1
perl 5.008000
ExtUtils-CBuilder-0.280224
pathname: A/AM/AMBS/ExtUtils-CBuilder-0.280224.tar.gz
provides:
ExtUtils::CBuilder 0.280224
ExtUtils::CBuilder::Base 0.280224
ExtUtils::CBuilder::Platform::Unix 0.280224
ExtUtils::CBuilder::Platform::VMS 0.280224
ExtUtils::CBuilder::Platform::Windows 0.280224
ExtUtils::CBuilder::Platform::Windows::BCC 0.280224
ExtUtils::CBuilder::Platform::Windows::GCC 0.280224
ExtUtils::CBuilder::Platform::Windows::MSVC 0.280224
ExtUtils::CBuilder::Platform::aix 0.280224
ExtUtils::CBuilder::Platform::android 0.280224
ExtUtils::CBuilder::Platform::cygwin 0.280224
ExtUtils::CBuilder::Platform::darwin 0.280224
ExtUtils::CBuilder::Platform::dec_osf 0.280224
ExtUtils::CBuilder::Platform::os2 0.280224
requirements:
Cwd 0
ExtUtils::MakeMaker 6.30
File::Basename 0
File::Spec 3.13
File::Temp 0
IO::File 0
IPC::Cmd 0
Perl::OSType 1
Text::ParseWords 0
ExtUtils-CChecker-0.10
pathname: P/PE/PEVANS/ExtUtils-CChecker-0.10.tar.gz
provides:
ExtUtils::CChecker 0.10
requirements:
ExtUtils::CBuilder 0
Module::Build 0
Test::Fatal 0
Test::More 0
ExtUtils-Config-0.008
pathname: L/LE/LEONT/ExtUtils-Config-0.008.tar.gz
provides:
ExtUtils::Config 0.008
requirements:
Data::Dumper 0
ExtUtils::MakeMaker 6.30
strict 0
warnings 0
ExtUtils-Constant-0.23
pathname: N/NW/NWCLARK/ExtUtils-Constant-0.23.tar.gz
provides:
ExtUtils::Constant 0.23
ExtUtils::Constant::Aaargh56Hash undef
ExtUtils::Constant::Base 0.05
ExtUtils::Constant::ProxySubs 0.08
ExtUtils::Constant::Utils 0.03
ExtUtils::Constant::XS 0.03
requirements:
ExtUtils::MakeMaker 0
ExtUtils-Helpers-0.022
pathname: L/LE/LEONT/ExtUtils-Helpers-0.022.tar.gz
provides:
ExtUtils::Helpers 0.022
ExtUtils::Helpers::Unix 0.022
ExtUtils::Helpers::VMS 0.022
ExtUtils::Helpers::Windows 0.022
requirements:
Carp 0
Exporter 5.57
ExtUtils::MakeMaker 6.30
File::Basename 0
File::Copy 0
File::Spec::Functions 0
Module::Load 0
Text::ParseWords 3.24
strict 0
warnings 0
ExtUtils-InstallPaths-0.011
pathname: L/LE/LEONT/ExtUtils-InstallPaths-0.011.tar.gz
provides:
ExtUtils::InstallPaths 0.011
requirements:
Carp 0
ExtUtils::Config 0.002
ExtUtils::MakeMaker 0
File::Spec 0
perl 5.006
strict 0
warnings 0
ExtUtils-MakeMaker-7.22
pathname: B/BI/BINGOS/ExtUtils-MakeMaker-7.22.tar.gz
provides:
ExtUtils::Command 7.22
ExtUtils::Command::MM 7.22
ExtUtils::Liblist 7.22
ExtUtils::Liblist::Kid 7.22
ExtUtils::MM 7.22
ExtUtils::MM_AIX 7.22
ExtUtils::MM_Any 7.22
ExtUtils::MM_BeOS 7.22
ExtUtils::MM_Cygwin 7.22
ExtUtils::MM_DOS 7.22
ExtUtils::MM_Darwin 7.22
ExtUtils::MM_MacOS 7.22
ExtUtils::MM_NW5 7.22
ExtUtils::MM_OS2 7.22
ExtUtils::MM_QNX 7.22
ExtUtils::MM_UWIN 7.22
ExtUtils::MM_Unix 7.22
ExtUtils::MM_VMS 7.22
ExtUtils::MM_VOS 7.22
ExtUtils::MM_Win32 7.22
ExtUtils::MM_Win95 7.22
ExtUtils::MY 7.22
ExtUtils::MakeMaker 7.22
ExtUtils::MakeMaker::Config 7.22
ExtUtils::MakeMaker::Locale 7.22
ExtUtils::MakeMaker::_version 7.22
ExtUtils::MakeMaker::charstar 7.22
ExtUtils::MakeMaker::version 7.22
ExtUtils::MakeMaker::version::regex 7.22
ExtUtils::MakeMaker::version::vpp 7.22
ExtUtils::Mkbootstrap 7.22
ExtUtils::Mksymlists 7.22
ExtUtils::testlib 7.22
MM 7.22
MY 7.22
requirements:
Data::Dumper 0
Encode 0
File::Basename 0
File::Spec 0.8
Pod::Man 0
perl 5.006
ExtUtils-ParseXS-3.30
pathname: S/SM/SMUELLER/ExtUtils-ParseXS-3.30.tar.gz
provides:
ExtUtils::ParseXS 3.30
ExtUtils::ParseXS::Constants 3.30
ExtUtils::ParseXS::CountLines 3.30
ExtUtils::ParseXS::Eval 3.30
ExtUtils::ParseXS::Utilities 3.30
ExtUtils::Typemaps 3.30
ExtUtils::Typemaps::Cmd 3.30
ExtUtils::Typemaps::InputMap 3.30
ExtUtils::Typemaps::OutputMap 3.30
ExtUtils::Typemaps::Type 3.30
requirements:
Carp 0
Cwd 0
DynaLoader 0
Exporter 5.57
ExtUtils::CBuilder 0
ExtUtils::MakeMaker 6.46
File::Basename 0
File::Spec 0
Symbol 0
Test::More 0.47
ExtUtils-PkgConfig-1.15
pathname: X/XA/XAOC/ExtUtils-PkgConfig-1.15.tar.gz
provides:
ExtUtils::PkgConfig 1.15
requirements:
ExtUtils::MakeMaker 0
FCGI-0.78
pathname: E/ET/ETHER/FCGI-0.78.tar.gz
provides:
FCGI 0.78
FCGI::Stream 0.78
requirements:
ExtUtils::MakeMaker 0
XSLoader 0
perl 5.006
File-BaseDir-0.07
pathname: K/KI/KIMRYAN/File-BaseDir-0.07.tar.gz
provides:
File::BaseDir 0.07
File::IconTheme 0.07
File::UserDirs 0.07
requirements:
Carp 0
Exporter 0
File::Spec 0
File::Temp 0
File::Which 0
IPC::System::Simple 0
Module::Build 0.24
Test::More 0
File-Copy-Recursive-0.38
pathname: D/DM/DMUEY/File-Copy-Recursive-0.38.tar.gz
provides:
File::Copy::Recursive 0.38
requirements:
ExtUtils::MakeMaker 0
File::Copy 0
File::Spec 0
File-DesktopEntry-0.22
pathname: M/MI/MICHIELB/File-DesktopEntry-0.22.tar.gz
provides:
File::DesktopEntry 0.22
requirements:
Carp 0
Encode 0
ExtUtils::MakeMaker 6.30
File::BaseDir 0.03
File::Path 0
File::Spec 0
URI::Escape 0
perl 5.008006
File-Flock-2014.01
pathname: M/MU/MUIR/modules/File-Flock-2014.01.tar.gz
provides:
File::Flock 2014.01
File::Flock::Forking undef
File::Flock::Subprocess undef
File::Flock::Subprocess::Connections undef
File::Flock::Subprocess::Master undef
requirements:
AnyEvent 0
Data::Structure::Util 0
File::Slurp 0
IO::Event 0.812
Test::SharedFork 0
Time::HiRes 0
File-HomeDir-1.00
pathname: A/AD/ADAMK/File-HomeDir-1.00.tar.gz
provides:
File::HomeDir 1.00
File::HomeDir::Darwin 1.00
File::HomeDir::Darwin::Carbon 1.00
File::HomeDir::Darwin::Cocoa 1.00
File::HomeDir::Driver 1.00
File::HomeDir::FreeDesktop 1.00
File::HomeDir::MacOS9 1.00
File::HomeDir::TIE 1.00
File::HomeDir::Test 1.00
File::HomeDir::Unix 1.00
File::HomeDir::Windows 1.00
requirements:
Carp 0
Cwd 3.12
ExtUtils::MakeMaker 6.36
File::Path 2.01
File::Spec 3.12
File::Temp 0.19
File::Which 0.05
Test::More 0.47
perl 5.00503
File-MimeInfo-0.27
pathname: M/MI/MICHIELB/File-MimeInfo-0.27.tar.gz
provides:
File::MimeInfo 0.27
File::MimeInfo::Applications 0.27
File::MimeInfo::Magic 0.27
File::MimeInfo::Rox 0.27
requirements:
Carp 0
Exporter 0
ExtUtils::MakeMaker 6.30
Fcntl 0
File::BaseDir 0.03
File::DesktopEntry 0.04
Pod::Usage 0
perl 5.006001
File-ShareDir-1.102
pathname: R/RE/REHSACK/File-ShareDir-1.102.tar.gz
provides:
File::ShareDir 1.102
requirements:
Carp 0
Class::Inspector 1.12
ExtUtils::MakeMaker 0
File::ShareDir::Install 0.03
File::Spec 0.80
perl 5.008001
warnings 0
File-ShareDir-Install-0.11
pathname: E/ET/ETHER/File-ShareDir-Install-0.11.tar.gz
provides:
File::ShareDir::Install 0.11
requirements:
Carp 0
Exporter 0
File::Spec 0
IO::Dir 0
Module::Build::Tiny 0.034
perl 5.008
strict 0
warnings 0
File-Slurp-9999.19
pathname: U/UR/URI/File-Slurp-9999.19.tar.gz
provides:
File::Slurp 9999.19
FileSlurp_12 9999.13
requirements:
Carp 0
Exporter 0
ExtUtils::MakeMaker 0
Fcntl 0
POSIX 0
perl 5.004
File-Which-1.21
pathname: P/PL/PLICEASE/File-Which-1.21.tar.gz
provides:
File::Which 1.21
requirements:
ExtUtils::MakeMaker 0
perl 5.006
Filesys-Notify-Simple-0.12
pathname: M/MI/MIYAGAWA/Filesys-Notify-Simple-0.12.tar.gz
provides:
Filesys::Notify::Simple 0.12
requirements:
ExtUtils::MakeMaker 6.30
GD-2.56
pathname: L/LD/LDS/GD-2.56.tar.gz
provides:
GD 2.56
GD::Group 1
GD::Polygon undef
GD::Polyline 0.2
GD::Simple undef
requirements:
ExtUtils::CBuilder 0
Math::Trig 0
Module::Build 0.42
GD-Barcode-1.15
pathname: K/KW/KWITKNR/GD-Barcode-1.15.tar.gz
provides:
GD::Barcode 1.15
GD::Barcode::COOP2of5 0.01
GD::Barcode::Code39 1.1
GD::Barcode::EAN13 1.1
GD::Barcode::EAN8 1.1
GD::Barcode::IATA2of5 0.01
GD::Barcode::ITF 0.01
GD::Barcode::Industrial2of5 0.01
GD::Barcode::Matrix2of5 0.01
GD::Barcode::NW7 1.1
GD::Barcode::QRcode 0.01
GD::Barcode::UPCA 1.1
GD::Barcode::UPCE 1.1
requirements:
ExtUtils::MakeMaker 0
GDGraph-1.53
pathname: R/RU/RUZ/GDGraph-1.53.tar.gz
provides:
GD::Graph 1.53
GD::Graph::Data 1.22
GD::Graph::Error 1.8
GD::Graph::area 1.17
GD::Graph::axestype 1.45
GD::Graph::bars 1.26
GD::Graph::colour 1.10
GD::Graph::hbars 1.3
GD::Graph::lines 1.15
GD::Graph::linespoints 1.8
GD::Graph::mixed 1.13
GD::Graph::pie 1.21
GD::Graph::points 1.13
GD::Graph::utils 1.7
requirements:
ExtUtils::MakeMaker 6.76
GD 1.18
GD::Text 0.80
GDTextUtil-0.86
pathname: M/MV/MVERB/GDTextUtil-0.86.tar.gz
provides:
GD::Text 0.86
GD::Text::Align 1.18
GD::Text::Wrap 1.20
requirements:
ExtUtils::MakeMaker 0
GD 1
HTML-Parser-3.72
pathname: G/GA/GAAS/HTML-Parser-3.72.tar.gz
provides:
HTML::Entities 3.69
HTML::Filter 3.72
HTML::HeadParser 3.71
HTML::LinkExtor 3.69
HTML::Parser 3.72
HTML::PullParser 3.57
HTML::TokeParser 3.69
requirements:
ExtUtils::MakeMaker 0
HTML::Tagset 3
XSLoader 0
perl 5.008
HTML-Scrubber-0.15
pathname: N/NI/NIGELM/HTML-Scrubber-0.15.tar.gz
provides:
HTML::Scrubber 0.15
requirements:
HTML::Entities 0
HTML::Parser 3.47
Module::Build 0.28
Scalar::Util 0
Test::CPAN::Meta 0
Test::EOL 0
Test::NoTabs 0
perl 5.008
strict 0
warnings 0
HTML-Tagset-3.20
pathname: P/PE/PETDANCE/HTML-Tagset-3.20.tar.gz
provides:
HTML::Tagset 3.20
requirements:
ExtUtils::MakeMaker 0
HTML-Tree-5.03
pathname: C/CJ/CJM/HTML-Tree-5.03.tar.gz
provides:
HTML::AsSubs 5.03
HTML::Element 5.03
HTML::Element::traverse 5.03
HTML::Parse 5.03
HTML::Tree 5.03
HTML::TreeBuilder 5.03
requirements:
Carp 0
Encode 0
Exporter 0
HTML::Entities 0
HTML::Parser 3.46
HTML::Tagset 3.02
Module::Build 0.2808
Scalar::Util 0
Test::Fatal 0
Test::More 0
base 0
integer 0
perl 5.008
HTTP-Body-1.22
pathname: G/GE/GETTY/HTTP-Body-1.22.tar.gz
provides:
HTTP::Body 1.22
HTTP::Body::MultiPart 1.22
HTTP::Body::OctetStream 1.22
HTTP::Body::UrlEncoded 1.22
HTTP::Body::XForms 1.22
HTTP::Body::XFormsMultipart 1.22
requirements:
Carp 0
Digest::MD5 0
ExtUtils::MakeMaker 0
File::Temp 0.14
HTTP::Headers 0
IO::File 1.14
HTTP-Date-6.02
pathname: G/GA/GAAS/HTTP-Date-6.02.tar.gz
provides:
HTTP::Date 6.02
requirements:
ExtUtils::MakeMaker 0
Time::Local 0
perl 5.006002
HTTP-Headers-Fast-0.20
pathname: T/TO/TOKUHIROM/HTTP-Headers-Fast-0.20.tar.gz
provides:
HTTP::Headers::Fast 0.20
requirements:
HTTP::Date 0
Module::Build 0.38
perl 5.008001
HTTP-Message-6.11
pathname: E/ET/ETHER/HTTP-Message-6.11.tar.gz
provides:
HTTP::Config 6.11
HTTP::Headers 6.11
HTTP::Headers::Auth 6.11
HTTP::Headers::ETag 6.11
HTTP::Headers::Util 6.11
HTTP::Message 6.11
HTTP::Request 6.11
HTTP::Request::Common 6.11
HTTP::Response 6.11
HTTP::Status 6.11
requirements:
Compress::Raw::Zlib 0
Encode 2.21
Encode::Locale 1
Exporter 5.57
ExtUtils::MakeMaker 0
HTTP::Date 6
IO::Compress::Bzip2 2.021
IO::Compress::Deflate 0
IO::Compress::Gzip 0
IO::HTML 0
IO::Uncompress::Bunzip2 2.021
IO::Uncompress::Gunzip 0
IO::Uncompress::Inflate 0
IO::Uncompress::RawInflate 0
LWP::MediaTypes 6
MIME::Base64 2.1
MIME::QuotedPrint 0
URI 1.10
perl 5.008001
HTTP-Tiny-0.058
pathname: D/DA/DAGOLDEN/HTTP-Tiny-0.058.tar.gz
provides:
HTTP::Tiny 0.058
requirements:
Carp 0
ExtUtils::MakeMaker 6.17
Fcntl 0
IO::Socket 0
MIME::Base64 0
Socket 0
Time::Local 0
bytes 0
perl 5.006
strict 0
warnings 0
Hash-MultiValue-0.16
pathname: A/AR/ARISTOTLE/Hash-MultiValue-0.16.tar.gz
provides:
Hash::MultiValue 0.16
requirements:
ExtUtils::MakeMaker 0
perl 5.008001
IO-CaptureOutput-1.1104
pathname: D/DA/DAGOLDEN/IO-CaptureOutput-1.1104.tar.gz
provides:
IO::CaptureOutput 1.1104
requirements:
Carp 0
Exporter 0
ExtUtils::MakeMaker 6.17
File::Basename 0
File::Temp 0.16
Symbol 0
perl 5.006
strict 0
vars 0
warnings 0
IO-Compress-2.069
pathname: P/PM/PMQS/IO-Compress-2.069.tar.gz
provides:
Compress::Zlib 2.069
File::GlobMapper 1.000
IO::Compress undef
IO::Compress::Adapter::Bzip2 2.069
IO::Compress::Adapter::Deflate 2.069
IO::Compress::Adapter::Identity 2.069
IO::Compress::Base 2.069
IO::Compress::Base::Common 2.069
IO::Compress::Bzip2 2.069
IO::Compress::Deflate 2.069
IO::Compress::Gzip 2.069
IO::Compress::Gzip::Constants 2.069
IO::Compress::RawDeflate 2.069
IO::Compress::Zip 2.069
IO::Compress::Zip::Constants 2.069
IO::Compress::Zlib::Constants 2.069
IO::Compress::Zlib::Extra 2.069
IO::Uncompress::Adapter::Bunzip2 2.069
IO::Uncompress::Adapter::Identity 2.069
IO::Uncompress::Adapter::Inflate 2.069
IO::Uncompress::AnyInflate 2.069
IO::Uncompress::AnyUncompress 2.069
IO::Uncompress::Base 2.069
IO::Uncompress::Bunzip2 2.069
IO::Uncompress::Gunzip 2.069
IO::Uncompress::Inflate 2.069
IO::Uncompress::RawInflate 2.069
IO::Uncompress::Unzip 2.069
U64 2.069
Zlib::OldDeflate 2.069
Zlib::OldInflate 2.069
requirements:
Compress::Raw::Bzip2 2.069
Compress::Raw::Zlib 2.069
ExtUtils::MakeMaker 0
Scalar::Util 0
IO-Event-0.813
pathname: M/MU/MUIR/modules/IO-Event-0.813.tar.gz
provides:
IO::Event 0.813
IO::Event::AnyEvent undef
IO::Event::AnyEvent::Wrapper undef
IO::Event::Callback undef
IO::Event::Common 0.813
IO::Event::Emulate undef
IO::Event::Emulate::Idle undef
IO::Event::Emulate::Timer undef
IO::Event::Event undef
IO::Event::INET::Callback undef
IO::Event::Socket::INET 0.813
IO::Event::Socket::UNIX 0.813
IO::Event::UNIX::Callback undef
requirements:
AnyEvent 0
Event 0
ExtUtils::MakeMaker 0
IO::Handle 0
List::MoreUtils 0
Test::Simple 0
Time::HiRes 0
diagnostics 0
IO-HTML-1.001
pathname: C/CJ/CJM/IO-HTML-1.001.tar.gz
provides:
IO::HTML 1.001
requirements:
Carp 0
Encode 2.10
Exporter 5.57
ExtUtils::MakeMaker 6.30
IO-SessionData-1.03
pathname: P/PH/PHRED/IO-SessionData-1.03.tar.gz
provides:
IO::SessionData 1.03
IO::SessionSet undef
requirements:
ExtUtils::MakeMaker 0
IO-Socket-IP-0.38
pathname: P/PE/PEVANS/IO-Socket-IP-0.38.tar.gz
provides:
IO::Socket::IP 0.38
requirements:
IO::Socket 0
Socket 1.97
Test::More 0.88
IO-Socket-SSL-2.034
pathname: S/SU/SULLR/IO-Socket-SSL-2.034.tar.gz
provides:
IO::Socket::SSL 2.034
IO::Socket::SSL::Intercept 2.014
IO::Socket::SSL::OCSP_Cache 2.034
IO::Socket::SSL::OCSP_Resolver 2.034
IO::Socket::SSL::PublicSuffix undef
IO::Socket::SSL::SSL_Context 2.034
IO::Socket::SSL::SSL_HANDLE 2.034
IO::Socket::SSL::Session_Cache 2.034
IO::Socket::SSL::Utils 2.014
requirements:
ExtUtils::MakeMaker 0
Mozilla::CA 0
Net::SSLeay 1.46
Scalar::Util 0
IO-stringy-2.111
pathname: D/DS/DSKOLL/IO-stringy-2.111.tar.gz
provides:
IO::AtomicFile 2.111
IO::Clever 1.01
IO::InnerFile 2.111
IO::Lines 2.111
IO::Scalar 2.111
IO::ScalarArray 2.111
IO::Stringy 2.111
IO::Wrap 2.111
IO::WrapTie 2.111
IO::WrapTie::Master 2.111
IO::WrapTie::Slave 2.111
requirements:
ExtUtils::MakeMaker 0
IPC-System-Simple-1.25
pathname: P/PJ/PJF/IPC-System-Simple-1.25.tar.gz
provides:
IPC::System::Simple 1.25
requirements:
Carp 0
Exporter 0
ExtUtils::MakeMaker 6.30
List::Util 0
POSIX 0
Scalar::Util 0
constant 0
re 0
strict 0
warnings 0
JSON-2.50
pathname: M/MA/MAKAMAKA/JSON-2.50.tar.gz
provides:
JSON 2.50
JSON::Backend::PP 2.50
JSON::Boolean 2.50
JSON::PP 2.27008
JSON::PP::IncrParser 2.27008
JSON::backportPP::Boolean 2.27008
requirements:
ExtUtils::MakeMaker 0
JSON::XS 2.27
Test::More 0
JSON-PP-2.27400
pathname: M/MA/MAKAMAKA/JSON-PP-2.27400.tar.gz
provides:
JSON::PP 2.27400
JSON::PP::Boolean 2.27400
JSON::PP::IncrParser 2.27400
requirements:
ExtUtils::MakeMaker 0
Test::More 0
JSON-RPC-1.01
pathname: D/DM/DMAKI/JSON-RPC-1.01.tar.gz
provides:
JSON::RPC 1.01
JSON::RPC::Constants undef
JSON::RPC::Dispatch undef
JSON::RPC::Legacy undef
JSON::RPC::Legacy::Client 0.93
JSON::RPC::Legacy::Procedure 0.90
JSON::RPC::Legacy::ReturnObject 0.93
JSON::RPC::Legacy::Server 0.92
JSON::RPC::Legacy::Server::Apache2 0.05
JSON::RPC::Legacy::Server::CGI 0.92
JSON::RPC::Legacy::Server::Daemon 0.03
JSON::RPC::Legacy::Server::system 0.92
JSON::RPC::Legacy::ServiceObject 0.93
JSON::RPC::Parser undef
JSON::RPC::Procedure undef
requirements:
CGI 0
Class::Accessor::Lite 0
ExtUtils::MakeMaker 6.42
HTTP::Request 0
HTTP::Response 0
JSON 0
LWP::UserAgent 0
Plack 0
Plack::Request 0
Plack::Test 0
Router::Simple 0
Test::More 0
parent 0
JSON-XS-2.3
pathname: M/ML/MLEHMANN/JSON-XS-2.3.tar.gz
provides:
JSON::XS 2.3
JSON::XS::Boolean 2.3
requirements:
ExtUtils::MakeMaker 0
common::sense 0
LWP-MediaTypes-6.02
pathname: G/GA/GAAS/LWP-MediaTypes-6.02.tar.gz
provides:
LWP::MediaTypes 6.02
requirements:
ExtUtils::MakeMaker 0
perl 5.006002
List-MoreUtils-0.22
pathname: V/VP/VPARSEVAL/List-MoreUtils-0.22.tar.gz
provides:
List::MoreUtils 0.22
requirements:
ExtUtils::MakeMaker 0
MIME-Types-2.13
pathname: M/MA/MARKOV/MIME-Types-2.13.tar.gz
provides:
MIME::Type 2.13
MIME::Types 2.13
MojoX::MIME::Types 2.13
requirements:
ExtUtils::MakeMaker 0
File::Basename 0
File::Spec 0
List::Util 0
Test::More 0.47
MIME-tools-5.507
pathname: D/DS/DSKOLL/MIME-tools-5.507.tar.gz
provides:
MIME::Body 5.507
MIME::Body::File 5.507
MIME::Body::InCore 5.507
MIME::Body::Scalar 5.507
MIME::Decoder 5.507
MIME::Decoder::Base64 5.507
MIME::Decoder::BinHex 5.507
MIME::Decoder::Binary 5.507
MIME::Decoder::Gzip64 5.507
MIME::Decoder::NBit 5.507
MIME::Decoder::QuotedPrint 5.507
MIME::Decoder::UU 5.507
MIME::Entity 5.507
MIME::Field::ConTraEnc 5.507
MIME::Field::ContDisp 5.507
MIME::Field::ContType 5.507
MIME::Field::ParamVal 5.507
MIME::Head 5.507
MIME::Parser 5.507
MIME::Parser::FileInto undef
MIME::Parser::FileUnder undef
MIME::Parser::Filer undef
MIME::Parser::Reader undef
MIME::Parser::Results undef
MIME::Tools 5.507
MIME::WordDecoder undef
MIME::WordDecoder::ISO_8859 undef
MIME::WordDecoder::US_ASCII undef
MIME::WordDecoder::UTF_8 undef
MIME::Words 5.507
requirements:
ExtUtils::MakeMaker 6.59
File::Path 1
File::Spec 0.6
File::Temp 0.18
IO::File 1.13
IO::Handle 0
MIME::Base64 2.2
Mail::Field 1.05
Mail::Header 1.01
Mail::Internet 1.0203
Test::Deep 0
Test::More 0
perl 5.008
MRO-Compat-0.12
pathname: B/BO/BOBTFISH/MRO-Compat-0.12.tar.gz
provides:
MRO::Compat 0.12
requirements:
ExtUtils::MakeMaker 6.59
Test::More 0.47
perl 5.006
MailTools-2.18
pathname: M/MA/MARKOV/MailTools-2.18.tar.gz
provides:
Mail undef
Mail::Address 2.18
Mail::Cap 2.18
Mail::Field 2.18
Mail::Field::AddrList 2.18
Mail::Field::Date 2.18
Mail::Field::Generic 2.18
Mail::Filter 2.18
Mail::Header 2.18
Mail::Internet 2.18
Mail::Mailer 2.18
Mail::Mailer::qmail 2.18
Mail::Mailer::rfc822 2.18
Mail::Mailer::sendmail 2.18
Mail::Mailer::smtp 2.18
Mail::Mailer::smtp::pipe 2.18
Mail::Mailer::smtps 2.18
Mail::Mailer::smtps::pipe 2.18
Mail::Mailer::testfile 2.18
Mail::Mailer::testfile::pipe 2.18
Mail::Send 2.18
Mail::Util 2.18
requirements:
Date::Format 0
Date::Parse 0
ExtUtils::MakeMaker 0
IO::Handle 0
Net::Domain 1.05
Net::SMTP 1.03
Test::More 0
Math-BigInt-1.999726
pathname: P/PJ/PJACKLAM/Math-BigInt-1.999726.tar.gz
provides:
Math::BigFloat 1.999726
Math::BigInt 1.999726
Math::BigInt::Calc 1.999726
Math::BigInt::CalcEmu 1.999726
requirements:
ExtUtils::MakeMaker 6.59
Math::Complex 1.39
Test::More 0.9301
perl 5.006001
Math-BigInt-GMP-1.51
pathname: P/PJ/PJACKLAM/Math-BigInt-GMP-1.51.tar.gz
provides:
Math::BigInt::GMP 1.51
requirements:
ExtUtils::MakeMaker 0
Math::BigInt 1.999719
XSLoader 0.02
Math-GMP-2.11
pathname: S/SH/SHLOMIF/Math-GMP-2.11.tar.gz
provides:
Math::GMP 2.11
requirements:
AutoLoader 0
Carp 0
Devel::CheckLib 0.9
DynaLoader 0
Exporter 0
ExtUtils::MakeMaker 0
overload 0
perl 5.006
strict 0
vars 0
warnings 0
Math-Pari-2.01080900
pathname: I/IL/ILYAZ/modules/Math-Pari-2.01080900.zip
provides:
Math::Pari 2.01080900
Math::Pari::Arr 2.01080900
Math::PariBuild 2.01080604
requirements:
ExtUtils::MakeMaker 0
Math-Prime-Util-0.59
pathname: D/DA/DANAJ/Math-Prime-Util-0.59.tar.gz
provides:
Math::Prime::Util 0.59
Math::Prime::Util::MemFree 0.59
Math::Prime::Util::PP 0.59
Math::Prime::Util::PrimeArray 0.59
Math::Prime::Util::PrimeIterator 0.59
ntheory 0.59
requirements:
Bytes::Random::Secure 0.23
Carp 0
Config 0
Exporter 5.57
ExtUtils::MakeMaker 0
Math::BigFloat 1.59
Math::BigInt 1.88
Math::Prime::Util::GMP 0.40
Tie::Array 0
XSLoader 0.01
base 0
constant 0
perl 5.006002
Math-Prime-Util-GMP-0.40
pathname: D/DA/DANAJ/Math-Prime-Util-GMP-0.40.tar.gz
provides:
Math::Prime::Util::GMP 0.40
requirements:
Carp 0
Exporter 5.57
ExtUtils::MakeMaker 0
XSLoader 0.01
base 0
perl 5.006002
Math-Random-ISAAC-1.004
pathname: J/JA/JAWNSY/Math-Random-ISAAC-1.004.tar.gz
provides:
Math::Random::ISAAC 1.004
Math::Random::ISAAC::PP 1.004
requirements:
ExtUtils::MakeMaker 6.31
Test::More 0.62
Test::NoWarnings 0.084
Math-Random-MT-1.17
pathname: F/FA/FANGLY/Math-Random-MT-1.17.tar.gz
provides:
Math::Random::MT 1.17
requirements:
ExtUtils::MakeMaker 0
Test::More 0
Test::Number::Delta 0
Module-Build-0.4218
pathname: L/LE/LEONT/Module-Build-0.4218.tar.gz
provides:
Module::Build 0.4218
Module::Build::Base 0.4218
Module::Build::Compat 0.4218
Module::Build::Config 0.4218
Module::Build::Cookbook 0.4218
Module::Build::Dumper 0.4218
Module::Build::Notes 0.4218
Module::Build::PPMMaker 0.4218
Module::Build::Platform::Default 0.4218
Module::Build::Platform::MacOS 0.4218
Module::Build::Platform::Unix 0.4218
Module::Build::Platform::VMS 0.4218
Module::Build::Platform::VOS 0.4218
Module::Build::Platform::Windows 0.4218
Module::Build::Platform::aix 0.4218
Module::Build::Platform::cygwin 0.4218
Module::Build::Platform::darwin 0.4218
Module::Build::Platform::os2 0.4218
Module::Build::PodParser 0.4218
requirements:
CPAN::Meta 2.142060
CPAN::Meta::YAML 0.003
Cwd 0
Data::Dumper 0
ExtUtils::CBuilder 0.27
ExtUtils::Install 0
ExtUtils::Manifest 0
ExtUtils::Mkbootstrap 0
ExtUtils::ParseXS 2.21
File::Basename 0
File::Compare 0
File::Copy 0
File::Find 0
File::Path 0
File::Spec 0.82
File::Temp 0.15
Getopt::Long 0
Module::Metadata 1.000002
Parse::CPAN::Meta 1.4401
Perl::OSType 1
Pod::Man 2.17
TAP::Harness 3.29
Test::More 0.49
Text::Abbrev 0
Text::ParseWords 0
perl 5.006001
version 0.87
Module-Build-Tiny-0.039
pathname: L/LE/LEONT/Module-Build-Tiny-0.039.tar.gz
provides:
Module::Build::Tiny 0.039
requirements:
CPAN::Meta 0
DynaLoader 0
Exporter 5.57
ExtUtils::CBuilder 0
ExtUtils::Config 0.003
ExtUtils::Helpers 0.020
ExtUtils::Install 0
ExtUtils::InstallPaths 0.002
ExtUtils::ParseXS 0
File::Basename 0
File::Find 0
File::Path 0
File::Spec::Functions 0
Getopt::Long 2.36
JSON::PP 2
Pod::Man 0
TAP::Harness::Env 0
perl 5.006
strict 0
warnings 0
Module-Implementation-0.09
pathname: D/DR/DROLSKY/Module-Implementation-0.09.tar.gz
provides:
Module::Implementation 0.09
requirements:
Carp 0
ExtUtils::MakeMaker 0
Module::Runtime 0.012
Try::Tiny 0
strict 0
warnings 0
Module-Metadata-1.000033
pathname: E/ET/ETHER/Module-Metadata-1.000033.tar.gz
provides:
Module::Metadata 1.000033
requirements:
Carp 0
ExtUtils::MakeMaker 0
Fcntl 0
File::Find 0
File::Spec 0
perl 5.006
strict 0
version 0.87
warnings 0
Module-Runtime-0.014
pathname: Z/ZE/ZEFRAM/Module-Runtime-0.014.tar.gz
provides:
Module::Runtime 0.014
requirements:
Module::Build 0
Test::More 0
perl 5.006
strict 0
warnings 0
Mozilla-CA-20160104
pathname: A/AB/ABH/Mozilla-CA-20160104.tar.gz
provides:
Mozilla::CA 20160104
requirements:
ExtUtils::MakeMaker 0
Test 0
perl 5.006
Net-SFTP-0.10
pathname: D/DB/DBROBINS/Net-SFTP-0.10.tar.gz
provides:
Net::SFTP 0.10
Net::SFTP::Attributes undef
Net::SFTP::Buffer undef
Net::SFTP::Constants undef
Net::SFTP::Util undef
requirements:
ExtUtils::MakeMaker 0
Net::SSH::Perl 1.24
Net-SSH-Perl-2.01
pathname: S/SC/SCHWIGON/Net-SSH-Perl-2.01.tar.gz
provides:
Net::SSH::Perl 2.01
Net::SSH::Perl::Agent undef
Net::SSH::Perl::Auth undef
Net::SSH::Perl::Auth::ChallengeResponse undef
Net::SSH::Perl::Auth::KeyboardInt undef
Net::SSH::Perl::Auth::KeyboardInteractive undef
Net::SSH::Perl::Auth::Password undef
Net::SSH::Perl::Auth::PublicKey undef
Net::SSH::Perl::Auth::RSA undef
Net::SSH::Perl::Auth::Rhosts undef
Net::SSH::Perl::Auth::Rhosts_RSA undef
Net::SSH::Perl::AuthMgr undef
Net::SSH::Perl::Buffer undef
Net::SSH::Perl::Channel undef
Net::SSH::Perl::ChannelMgr undef
Net::SSH::Perl::Cipher undef
Net::SSH::Perl::Cipher::AES128_CBC undef
Net::SSH::Perl::Cipher::AES128_CTR undef
Net::SSH::Perl::Cipher::AES192_CBC undef
Net::SSH::Perl::Cipher::AES192_CTR undef
Net::SSH::Perl::Cipher::AES256_CBC undef
Net::SSH::Perl::Cipher::AES256_CTR undef
Net::SSH::Perl::Cipher::AES_CBC undef
Net::SSH::Perl::Cipher::AES_CTR undef
Net::SSH::Perl::Cipher::Blowfish undef
Net::SSH::Perl::Cipher::CBC undef
Net::SSH::Perl::Cipher::CFB undef
Net::SSH::Perl::Cipher::CTR undef
Net::SSH::Perl::Cipher::ChachaPoly undef
Net::SSH::Perl::Cipher::DES undef
Net::SSH::Perl::Cipher::DES3 undef
Net::SSH::Perl::Cipher::DES3::EDE3 undef
Net::SSH::Perl::Cipher::IDEA undef
Net::SSH::Perl::Cipher::RC4 undef
Net::SSH::Perl::Comp undef
Net::SSH::Perl::Comp::Zlib undef
Net::SSH::Perl::Config undef
Net::SSH::Perl::Constants undef
Net::SSH::Perl::Handle undef
Net::SSH::Perl::Handle::SSH1 undef
Net::SSH::Perl::Handle::SSH2 undef
Net::SSH::Perl::Kex undef
Net::SSH::Perl::Kex::C25519 undef
Net::SSH::Perl::Kex::DH undef
Net::SSH::Perl::Kex::DH1 undef
Net::SSH::Perl::Kex::DH14 undef
Net::SSH::Perl::Kex::DHGEX undef
Net::SSH::Perl::Kex::DHGEXSHA1 undef
Net::SSH::Perl::Kex::DHGEXSHA256 undef
Net::SSH::Perl::Key undef
Net::SSH::Perl::Key::DSA undef
Net::SSH::Perl::Key::Ed25519 undef
Net::SSH::Perl::Key::RSA undef
Net::SSH::Perl::Key::RSA1 undef
Net::SSH::Perl::Mac undef
Net::SSH::Perl::Mac::MD5 undef
Net::SSH::Perl::Mac::SHA1 undef
Net::SSH::Perl::Mac::SHA2_256 undef
Net::SSH::Perl::Mac::SHA2_512 undef
Net::SSH::Perl::Packet undef
Net::SSH::Perl::Proxy undef
Net::SSH::Perl::SSH1 undef
Net::SSH::Perl::SSH2 undef
Net::SSH::Perl::Subsystem::Client undef
Net::SSH::Perl::Subsystem::Server undef
Net::SSH::Perl::Util undef
Net::SSH::Perl::Util::Authfile undef
Net::SSH::Perl::Util::Hosts undef
Net::SSH::Perl::Util::RSA undef
Net::SSH::Perl::Util::SSH1MP undef
Net::SSH::Perl::Util::SSH1Misc undef
Net::SSH::Perl::Util::SSH2MP undef
Net::SSH::Perl::Util::Term undef
Net::SSH::Perl::Util::Win32 undef
requirements:
Convert::PEM 0.05
Crypt::Curve25519 0.05
Crypt::DH 0.01
CryptX 0
Digest::BubbleBabble 0.01
Digest::MD5 0
ExtUtils::MakeMaker 0
File::HomeDir 0
File::Spec 0
IO::Socket 0
MIME::Base64 0
Math::GMP 1.04
Math::Pari 2.001804
Scalar::Util 0
String::CRC32 1.2
Net-SSLeay-1.77
pathname: M/MI/MIKEM/Net-SSLeay-1.77.tar.gz
provides:
Net::SSLeay 1.77
Net::SSLeay::Handle 0.61
requirements:
ExtUtils::MakeMaker 6.36
MIME::Base64 0
Test::More 0.60_01
perl 5.005
POSIX-strftime-Compiler-0.42
pathname: K/KA/KAZEBURO/POSIX-strftime-Compiler-0.42.tar.gz
provides:
POSIX::strftime::Compiler 0.42
requirements:
Carp 0
Exporter 0
Module::Build 0.38
POSIX 0
Time::Local 0
perl 5.008001
Package-Stash-0.37
pathname: D/DO/DOY/Package-Stash-0.37.tar.gz
provides:
Package::Stash 0.37
Package::Stash::PP 0.37
requirements:
B 0
Carp 0
Config 0
Dist::CheckConflicts 0.02
ExtUtils::MakeMaker 0
File::Spec 0
Getopt::Long 0
Module::Implementation 0.06
Package::Stash::XS 0.26
Scalar::Util 0
Symbol 0
Text::ParseWords 0
constant 0
strict 0
warnings 0
Package-Stash-XS-0.28
pathname: D/DO/DOY/Package-Stash-XS-0.28.tar.gz
provides:
Package::Stash::XS 0.28
requirements:
ExtUtils::MakeMaker 6.30
XSLoader 0
strict 0
warnings 0
Params-Util-1.07
pathname: A/AD/ADAMK/Params-Util-1.07.tar.gz
provides:
Params::Util 1.07
requirements:
ExtUtils::CBuilder 0.27
ExtUtils::MakeMaker 6.52
File::Spec 0.80
Scalar::Util 1.18
Test::More 0.42
perl 5.00503
Params-Validate-0.95
pathname: D/DR/DROLSKY/Params-Validate-0.95.tar.gz
provides:
Attribute::Params::Validate 1.07
Params::Validate 0.95
requirements:
Attribute::Handlers 0.79
ExtUtils::CBuilder 0
Pod::Man 1.14
Scalar::Util 1.10
Test::More 0.34
Parse-CPAN-Meta-1.4422
pathname: D/DA/DAGOLDEN/Parse-CPAN-Meta-1.4422.tar.gz
provides:
Parse::CPAN::Meta 1.4422
requirements:
CPAN::Meta::YAML 0.011
Carp 0
Encode 0
Exporter 0
ExtUtils::MakeMaker 0
File::Spec 0.80
JSON::PP 2.27300
perl 5.008001
strict 0
PatchReader-0.9.6
pathname: T/TM/TMANNERM/PatchReader-0.9.6.tar.gz
provides:
PatchReader 0.009006
PatchReader::AddCVSContext undef
PatchReader::Base undef
PatchReader::CVSClient undef
PatchReader::DiffPrinter::raw undef
PatchReader::DiffPrinter::template undef
PatchReader::FilterPatch undef
PatchReader::FixPatchRoot undef
PatchReader::NarrowPatch undef
PatchReader::PatchInfoGrabber undef
PatchReader::Raw undef
requirements:
Cwd 2
ExtUtils::MakeMaker 0
File::Temp 0.05
Perl-OSType-1.010
pathname: D/DA/DAGOLDEN/Perl-OSType-1.010.tar.gz
provides:
Perl::OSType 1.010
requirements:
Exporter 0
ExtUtils::MakeMaker 6.17
perl 5.006
strict 0
warnings 0
Plack-1.0039
pathname: M/MI/MIYAGAWA/Plack-1.0039.tar.gz
provides:
HTTP::Message::PSGI undef
HTTP::Server::PSGI undef
Plack 1.0039
Plack::App::CGIBin undef
Plack::App::Cascade undef
Plack::App::Directory undef
Plack::App::File undef
Plack::App::PSGIBin undef
Plack::App::URLMap undef
Plack::App::WrapCGI undef
Plack::Builder undef
Plack::Component undef
Plack::HTTPParser undef
Plack::HTTPParser::PP undef
Plack::Handler undef
Plack::Handler::Apache1 undef
Plack::Handler::Apache2 undef
Plack::Handler::Apache2::Registry undef
Plack::Handler::CGI undef
Plack::Handler::CGI::Writer undef
Plack::Handler::FCGI undef
Plack::Handler::HTTP::Server::PSGI undef
Plack::Handler::Standalone undef
Plack::LWPish undef
Plack::Loader undef
Plack::Loader::Delayed undef
Plack::Loader::Restarter undef
Plack::Loader::Shotgun undef
Plack::MIME undef
Plack::Middleware undef
Plack::Middleware::AccessLog undef
Plack::Middleware::AccessLog::Timed undef
Plack::Middleware::Auth::Basic undef
Plack::Middleware::BufferedStreaming undef
Plack::Middleware::Chunked undef
Plack::Middleware::Conditional undef
Plack::Middleware::ConditionalGET undef
Plack::Middleware::ContentLength undef
Plack::Middleware::ContentMD5 undef
Plack::Middleware::ErrorDocument undef
Plack::Middleware::HTTPExceptions undef
Plack::Middleware::Head undef
Plack::Middleware::IIS6ScriptNameFix undef
Plack::Middleware::IIS7KeepAliveFix undef
Plack::Middleware::JSONP undef
Plack::Middleware::LighttpdScriptNameFix undef
Plack::Middleware::Lint undef
Plack::Middleware::Log4perl undef
Plack::Middleware::LogDispatch undef
Plack::Middleware::NullLogger undef
Plack::Middleware::RearrangeHeaders undef
Plack::Middleware::Recursive undef
Plack::Middleware::Refresh undef
Plack::Middleware::Runtime undef
Plack::Middleware::SimpleContentFilter undef
Plack::Middleware::SimpleLogger undef
Plack::Middleware::StackTrace undef
Plack::Middleware::Static undef
Plack::Middleware::XFramework undef
Plack::Middleware::XSendfile undef
Plack::Recursive::ForwardRequest undef
Plack::Request 1.0039
Plack::Request::Upload undef
Plack::Response 1.0039
Plack::Runner undef
Plack::TempBuffer undef
Plack::Test undef
Plack::Test::MockHTTP undef
Plack::Test::Server undef
Plack::Test::Suite undef
Plack::Util undef
Plack::Util::Accessor undef
Plack::Util::IOWithPath undef
Plack::Util::Prototype undef
requirements:
Apache::LogFormat::Compiler 0.12
Cookie::Baker 0.05
Devel::StackTrace 1.23
Devel::StackTrace::AsHTML 0.11
ExtUtils::MakeMaker 0
File::ShareDir 1.00
File::ShareDir::Install 0.06
Filesys::Notify::Simple 0
HTTP::Body 1.06
HTTP::Headers::Fast 0.18
HTTP::Message 5.814
HTTP::Tiny 0.034
Hash::MultiValue 0.05
Pod::Usage 1.36
Stream::Buffered 0.02
Test::TCP 2.00
Try::Tiny 0
URI 1.59
parent 0
perl 5.008001
Pod-Coverage-0.23
pathname: R/RC/RCLAMP/Pod-Coverage-0.23.tar.gz
provides:
Pod::Coverage 0.23
Pod::Coverage::CountParents undef
Pod::Coverage::ExportOnly undef
Pod::Coverage::Extractor 0.23
Pod::Coverage::Overloader undef
requirements:
Devel::Symdump 2.01
ExtUtils::MakeMaker 0
Pod::Find 0.21
Pod::Parser 1.13
Test::More 0
Regexp-Common-2016060801
pathname: A/AB/ABIGAIL/Regexp-Common-2016060801.tar.gz
provides:
Regexp::Common 2016060801
Regexp::Common::CC 2016060801
Regexp::Common::Entry 2016060801
Regexp::Common::SEN 2016060801
Regexp::Common::URI 2016060801
Regexp::Common::URI::RFC1035 2016060801
Regexp::Common::URI::RFC1738 2016060801
Regexp::Common::URI::RFC1808 2016060801
Regexp::Common::URI::RFC2384 2016060801
Regexp::Common::URI::RFC2396 2016060801
Regexp::Common::URI::RFC2806 2016060801
Regexp::Common::URI::fax 2016060801
Regexp::Common::URI::file 2016060801
Regexp::Common::URI::ftp 2016060801
Regexp::Common::URI::gopher 2016060801
Regexp::Common::URI::http 2016060801
Regexp::Common::URI::news 2016060801
Regexp::Common::URI::pop 2016060801
Regexp::Common::URI::prospero 2016060801
Regexp::Common::URI::tel 2016060801
Regexp::Common::URI::telnet 2016060801
Regexp::Common::URI::tv 2016060801
Regexp::Common::URI::wais 2016060801
Regexp::Common::_support 2016060801
Regexp::Common::balanced 2016060801
Regexp::Common::comment 2016060801
Regexp::Common::delimited 2016060801
Regexp::Common::lingua 2016060801
Regexp::Common::list 2016060801
Regexp::Common::net 2016060801
Regexp::Common::number 2016060801
Regexp::Common::profanity 2016060801
Regexp::Common::whitespace 2016060801
Regexp::Common::zip 2016060801
requirements:
Config 0
ExtUtils::MakeMaker 0
perl 5.01
strict 0
vars 0
warnings 0
Return-Value-1.666005
pathname: R/RJ/RJBS/Return-Value-1.666005.tar.gz
provides:
Return::Value 1.666005
requirements:
Carp 0
Exporter 5.57
ExtUtils::MakeMaker 0
overload 0
strict 0
warnings 0
Router-Simple-0.17
pathname: T/TO/TOKUHIROM/Router-Simple-0.17.tar.gz
provides:
Router::Simple 0.17
Router::Simple::Declare undef
Router::Simple::Route undef
Router::Simple::SubMapper undef
requirements:
Class::Accessor::Lite 0.05
List::Util 0
Module::Build 0.38
Scalar::Util 0
parent 0
perl 5.008_001
SOAP-Lite-1.20
pathname: P/PH/PHRED/SOAP-Lite-1.20.tar.gz
provides:
Apache::SOAP 1.17
My::Chat undef
My::Examples undef
My::Parameters undef
My::PersistentIterator undef
My::PingPong undef
My::SessionIterator undef
SOAP 1.20
SOAP::Apache undef
SOAP::Client 1.20
SOAP::Cloneable 1.20
SOAP::Constants 1.17
SOAP::Custom::XML::Data 1.20
SOAP::Custom::XML::Deserializer 1.20
SOAP::Data 1.20
SOAP::Deserializer 1.20
SOAP::Fault 1.20
SOAP::Header 1.20
SOAP::Lite 1.20
SOAP::Lite::COM 1.20
SOAP::Lite::Deserializer::XMLSchema1999 undef
SOAP::Lite::Deserializer::XMLSchema2001 undef
SOAP::Lite::Deserializer::XMLSchemaSOAP1_1 undef
SOAP::Lite::Deserializer::XMLSchemaSOAP1_2 undef
SOAP::Lite::Packager undef
SOAP::Lite::Packager::DIME undef
SOAP::Lite::Packager::MIME undef
SOAP::Lite::Utils undef
SOAP::Packager 1.17
SOAP::Packager::DIME 1.17
SOAP::Packager::MIME 1.17
SOAP::Parser 1.20
SOAP::SOM 1.20
SOAP::Schema 1.20
SOAP::Schema::Deserializer 1.20
SOAP::Schema::WSDL 1.20
SOAP::Serializer 1.20
SOAP::Server 1.20
SOAP::Server::Object 1.20
SOAP::Server::Parameters 1.20
SOAP::Test 1.17
SOAP::Test::Server 1.17
SOAP::Trace 1.20
SOAP::Transport 1.20
SOAP::Transport::HTTP 1.17
SOAP::Transport::HTTP::Apache 1.17
SOAP::Transport::HTTP::CGI 1.17
SOAP::Transport::HTTP::Client 1.17
SOAP::Transport::HTTP::Daemon 1.17
SOAP::Transport::HTTP::Daemon::ForkAfterProcessing undef
SOAP::Transport::HTTP::Daemon::ForkOnAccept undef
SOAP::Transport::HTTP::FCGI 1.17
SOAP::Transport::HTTP::Server 1.17
SOAP::Transport::IO 1.17
SOAP::Transport::IO::Server 1.17
SOAP::Transport::LOCAL 1.17
SOAP::Transport::LOCAL::Client 1.17
SOAP::Transport::LOOPBACK undef
SOAP::Transport::LOOPBACK::Client undef
SOAP::Transport::MAILTO 1.17
SOAP::Transport::MAILTO::Client 1.17
SOAP::Transport::POP3 1.17
SOAP::Transport::POP3::Server 1.17
SOAP::Transport::TCP 1.17
SOAP::Transport::TCP::Client 1.17
SOAP::Transport::TCP::Server 1.17
SOAP::Utils 1.20
SOAP::XMLSchema1999::Serializer 1.20
SOAP::XMLSchema2001::Serializer 1.20
SOAP::XMLSchema::Serializer 1.20
SOAP::XMLSchemaApacheSOAP::Deserializer 1.20
URI::tcp 1.17
requirements:
Class::Inspector 0
Compress::Zlib 0
ExtUtils::MakeMaker 0
IO::SessionData 1.03
IO::Socket::SSL 0
LWP::Protocol::https 0
LWP::UserAgent 0
MIME::Base64 0
Scalar::Util 0
Task::Weaken 0
URI 0
XML::Parser 2.23
constant 0
perl 5.006000
Safe-2.35
pathname: R/RG/RGARCIA/Safe-2.35.tar.gz
provides:
Safe 2.35
requirements:
ExtUtils::MakeMaker 0
Socket-2.023
pathname: P/PE/PEVANS/Socket-2.023.tar.gz
provides:
Socket 2.023
requirements:
ExtUtils::CBuilder 0
ExtUtils::Constant 0.23
ExtUtils::MakeMaker 0
perl 5.006001
Sort-Versions-1.62
pathname: N/NE/NEILB/Sort-Versions-1.62.tar.gz
provides:
Sort::Versions 1.62
requirements:
Exporter 0
ExtUtils::MakeMaker 0
perl 5.006
strict 0
warnings 0
Stream-Buffered-0.03
pathname: D/DO/DOY/Stream-Buffered-0.03.tar.gz
provides:
Stream::Buffered 0.03
Stream::Buffered::Auto undef
Stream::Buffered::File undef
Stream::Buffered::PerlIO undef
requirements:
ExtUtils::MakeMaker 6.30
IO::File 1.14
String-CRC32-1.5
pathname: S/SO/SOENKE/String-CRC32-1.5.tar.gz
provides:
String::CRC32 1.5
requirements:
ExtUtils::MakeMaker 0
Sub-Exporter-Progressive-0.001011
pathname: F/FR/FREW/Sub-Exporter-Progressive-0.001011.tar.gz
provides:
Sub::Exporter::Progressive 0.001011
requirements:
ExtUtils::MakeMaker 0
Test::More 0.88
Sub-Install-0.928
pathname: R/RJ/RJBS/Sub-Install-0.928.tar.gz
provides:
Sub::Install 0.928
requirements:
B 0
Carp 0
ExtUtils::MakeMaker 6.30
Scalar::Util 0
strict 0
warnings 0
Sub-Name-0.15
pathname: E/ET/ETHER/Sub-Name-0.15.tar.gz
provides:
Sub::Name 0.15
requirements:
Exporter 5.57
ExtUtils::MakeMaker 0
XSLoader 0
perl 5.006
strict 0
warnings 0
Sub-Uplevel-0.2600
pathname: D/DA/DAGOLDEN/Sub-Uplevel-0.2600.tar.gz
provides:
Sub::Uplevel 0.2600
requirements:
Carp 0
ExtUtils::MakeMaker 6.17
constant 0
perl 5.006
strict 0
warnings 0
Task-Weaken-1.04
pathname: A/AD/ADAMK/Task-Weaken-1.04.tar.gz
provides:
Task::Weaken 1.04
requirements:
ExtUtils::MakeMaker 6.42
File::Spec 0.80
Scalar::Util 1.14
Test::More 0.42
perl 5.005
Template-GD-2.66
pathname: A/AB/ABW/Template-GD-2.66.tar.gz
provides:
Template::GD undef
Template::Plugin::GD 2.66
Template::Plugin::GD::Constants 1.56
Template::Plugin::GD::Graph::area 1.58
Template::Plugin::GD::Graph::bars 1.58
Template::Plugin::GD::Graph::bars3d 1.58
Template::Plugin::GD::Graph::lines 1.58
Template::Plugin::GD::Graph::lines3d 1.58
Template::Plugin::GD::Graph::linespoints 1.58
Template::Plugin::GD::Graph::mixed 1.58
Template::Plugin::GD::Graph::pie 1.56
Template::Plugin::GD::Graph::pie3d 1.56
Template::Plugin::GD::Graph::points 1.58
Template::Plugin::GD::Image 1.56
Template::Plugin::GD::Polygon 1.56
Template::Plugin::GD::Text 1.56
Template::Plugin::GD::Text::Align 1.56
Template::Plugin::GD::Text::Wrap 1.56
requirements:
ExtUtils::MakeMaker 0
GD 1.14
Template 2.14
Template-Toolkit-2.24
pathname: A/AB/ABW/Template-Toolkit-2.24.tar.gz
provides:
Template 2.24
Template::Base 2.78
Template::Config 2.75
Template::Constants 2.75
Template::Context 2.98
Template::Directive 2.2
Template::Document 2.79
Template::Exception 2.7
Template::Filters 2.87
Template::Grammar 2.25
Template::Iterator 2.68
Template::Monad::Assert 1
Template::Monad::Scalar 1
Template::Namespace::Constants 1.27
Template::Parser 2.89
Template::Perl 2.2
Template::Plugin 2.7
Template::Plugin::Assert 1
Template::Plugin::CGI 2.7
Template::Plugin::Datafile 2.72
Template::Plugin::Date 2.78
Template::Plugin::Date::Calc 2.78
Template::Plugin::Date::Manip 2.78
Template::Plugin::Directory 2.7
Template::Plugin::Dumper 2.7
Template::Plugin::File 2.71
Template::Plugin::Filter 1.38
Template::Plugin::Format 2.7
Template::Plugin::HTML 2.62
Template::Plugin::Image 1.21
Template::Plugin::Iterator 2.68
Template::Plugin::Math 1.16
Template::Plugin::Pod 2.69
Template::Plugin::Procedural 1.17
Template::Plugin::Scalar 1
Template::Plugin::String 2.4
Template::Plugin::Table 2.71
Template::Plugin::URL 2.74
Template::Plugin::View 2.68
Template::Plugin::Wrap 2.68
Template::Plugins 2.77
Template::Provider 2.94
Template::Service 2.8
Template::Stash 2.91
Template::Stash::Context 1.63
Template::Stash::XS undef
Template::Test 2.75
Template::TieString 2.75
Template::VMethods 2.16
Template::View 2.91
bytes 2.94
requirements:
AppConfig 1.56
ExtUtils::MakeMaker 0
File::Spec 0.8
File::Temp 0.12
Scalar::Util 0
Test-CPAN-Meta-0.25
pathname: B/BA/BARBIE/Test-CPAN-Meta-0.25.tar.gz
provides:
Test::CPAN::Meta 0.25
Test::CPAN::Meta::Version 0.25
requirements:
ExtUtils::MakeMaker 0
IO::File 0
Parse::CPAN::Meta 0.02
Test::Builder 0
Test::Builder::Tester 0
Test::More 0.70
Test-Deep-1.120
pathname: R/RJ/RJBS/Test-Deep-1.120.tar.gz
provides:
Test::Deep 1.120
Test::Deep::All undef
Test::Deep::Any undef
Test::Deep::Array undef
Test::Deep::ArrayEach undef
Test::Deep::ArrayElementsOnly undef
Test::Deep::ArrayLength undef
Test::Deep::ArrayLengthOnly undef
Test::Deep::Blessed undef
Test::Deep::Boolean undef
Test::Deep::Cache undef
Test::Deep::Cache::Simple undef
Test::Deep::Class undef
Test::Deep::Cmp undef
Test::Deep::Code undef
Test::Deep::Hash undef
Test::Deep::HashEach undef
Test::Deep::HashElements undef
Test::Deep::HashKeys undef
Test::Deep::HashKeysOnly undef
Test::Deep::Ignore undef
Test::Deep::Isa undef
Test::Deep::ListMethods undef
Test::Deep::MM undef
Test::Deep::Methods undef
Test::Deep::NoTest undef
Test::Deep::None undef
Test::Deep::Number undef
Test::Deep::Obj undef
Test::Deep::Ref undef
Test::Deep::RefType undef
Test::Deep::Regexp undef
Test::Deep::RegexpMatches undef
Test::Deep::RegexpOnly undef
Test::Deep::RegexpRef undef
Test::Deep::RegexpRefOnly undef
Test::Deep::RegexpVersion undef
Test::Deep::ScalarRef undef
Test::Deep::ScalarRefOnly undef
Test::Deep::Set undef
Test::Deep::Shallow undef
Test::Deep::Stack undef
Test::Deep::String undef
Test::Deep::SubHash undef
Test::Deep::SubHashElements undef
Test::Deep::SubHashKeys undef
Test::Deep::SubHashKeysOnly undef
Test::Deep::SuperHash undef
Test::Deep::SuperHashElements undef
Test::Deep::SuperHashKeys undef
Test::Deep::SuperHashKeysOnly undef
requirements:
ExtUtils::MakeMaker 0
List::Util 1.09
Scalar::Util 1.09
Test::Builder 0
Test-EOL-1.6
pathname: F/FR/FREW/Test-EOL-1.6.tar.gz
provides:
Test::EOL 1.6
requirements:
Cwd 0
ExtUtils::MakeMaker 0
File::Find 0
File::Spec 0
Test::Builder 0
perl 5.006
strict 0
vars 0
warnings 0
Test-Exception-0.43
pathname: E/EX/EXODIST/Test-Exception-0.43.tar.gz
provides:
Test::Exception 0.43
requirements:
Carp 0
Exporter 0
ExtUtils::MakeMaker 0
Sub::Uplevel 0.18
Test::Builder 0.7
Test::Builder::Tester 1.07
Test::Harness 2.03
base 0
perl 5.006001
strict 0
warnings 0
Test-Fatal-0.014
pathname: R/RJ/RJBS/Test-Fatal-0.014.tar.gz
provides:
Test::Fatal 0.014
requirements:
Carp 0
Exporter 5.57
ExtUtils::MakeMaker 0
Test::Builder 0
Try::Tiny 0.07
strict 0
warnings 0
Test-Harness-3.36
pathname: L/LE/LEONT/Test-Harness-3.36.tar.gz
provides:
App::Prove 3.36
App::Prove::State 3.36
App::Prove::State::Result 3.36
App::Prove::State::Result::Test 3.36
Harness::Hook undef
TAP::Base 3.36
TAP::Formatter::Base 3.36
TAP::Formatter::Color 3.36
TAP::Formatter::Console 3.36
TAP::Formatter::Console::ParallelSession 3.36
TAP::Formatter::Console::Session 3.36
TAP::Formatter::File 3.36
TAP::Formatter::File::Session 3.36
TAP::Formatter::Session 3.36
TAP::Harness 3.36
TAP::Harness::Env 3.36
TAP::Object 3.36
TAP::Parser 3.36
TAP::Parser::Aggregator 3.36
TAP::Parser::Grammar 3.36
TAP::Parser::Iterator 3.36
TAP::Parser::Iterator::Array 3.36
TAP::Parser::Iterator::Process 3.36
TAP::Parser::Iterator::Stream 3.36
TAP::Parser::IteratorFactory 3.36
TAP::Parser::Multiplexer 3.36
TAP::Parser::Result 3.36
TAP::Parser::Result::Bailout 3.36
TAP::Parser::Result::Comment 3.36
TAP::Parser::Result::Plan 3.36
TAP::Parser::Result::Pragma 3.36
TAP::Parser::Result::Test 3.36
TAP::Parser::Result::Unknown 3.36
TAP::Parser::Result::Version 3.36
TAP::Parser::Result::YAML 3.36
TAP::Parser::ResultFactory 3.36
TAP::Parser::Scheduler 3.36
TAP::Parser::Scheduler::Job 3.36
TAP::Parser::Scheduler::Spinner 3.36
TAP::Parser::Source 3.36
TAP::Parser::SourceHandler 3.36
TAP::Parser::SourceHandler::Executable 3.36
TAP::Parser::SourceHandler::File 3.36
TAP::Parser::SourceHandler::Handle 3.36
TAP::Parser::SourceHandler::Perl 3.36
TAP::Parser::SourceHandler::RawTAP 3.36
TAP::Parser::YAMLish::Reader 3.36
TAP::Parser::YAMLish::Writer 3.36
Test::Harness 3.36
requirements:
ExtUtils::MakeMaker 0
Test-NoTabs-1.4
pathname: B/BO/BOBTFISH/Test-NoTabs-1.4.tar.gz
provides:
Test::NoTabs 1.4
requirements:
ExtUtils::MakeMaker 6.36
File::Find 0
File::Spec 0
FindBin 0
Test::Builder 0
Test::More 0
Test-NoWarnings-1.04
pathname: A/AD/ADAMK/Test-NoWarnings-1.04.tar.gz
provides:
Test::NoWarnings 1.04
Test::NoWarnings::Warning 1.04
requirements:
ExtUtils::MakeMaker 0
Test::Builder 0.86
Test::More 0.47
Test::Tester 0.107
perl 5.006
Test-Number-Delta-1.06
pathname: D/DA/DAGOLDEN/Test-Number-Delta-1.06.tar.gz
provides:
Test::Number::Delta 1.06
requirements:
Carp 0
Exporter 0
ExtUtils::MakeMaker 6.17
Test::Builder 0
perl 5.006
strict 0
vars 0
warnings 0
Test-SharedFork-0.35
pathname: E/EX/EXODIST/Test-SharedFork-0.35.tar.gz
provides:
Test::SharedFork 0.35
Test::SharedFork::Array undef
Test::SharedFork::Scalar undef
Test::SharedFork::Store undef
requirements:
ExtUtils::MakeMaker 6.64
File::Temp 0
Test::Builder 0.32
Test::Builder::Module 0
Test::More 0.88
perl 5.008_001
Test-Simple-1.302049
pathname: E/EX/EXODIST/Test-Simple-1.302049.tar.gz
provides:
Test2 1.302049
Test2::API 1.302049
Test2::API::Breakage 1.302049
Test2::API::Context 1.302049
Test2::API::Instance 1.302049
Test2::API::Stack 1.302049
Test2::Event 1.302049
Test2::Event::Bail 1.302049
Test2::Event::Diag 1.302049
Test2::Event::Exception 1.302049
Test2::Event::Generic 1.302049
Test2::Event::Info 1.302049
Test2::Event::Note 1.302049
Test2::Event::Ok 1.302049
Test2::Event::Plan 1.302049
Test2::Event::Skip 1.302049
Test2::Event::Subtest 1.302049
Test2::Event::Waiting 1.302049
Test2::Formatter 1.302049
Test2::Formatter::TAP 1.302049
Test2::Hub 1.302049
Test2::Hub::Interceptor 1.302049
Test2::Hub::Interceptor::Terminator 1.302049
Test2::Hub::Subtest 1.302049
Test2::IPC 1.302049
Test2::IPC::Driver 1.302049
Test2::IPC::Driver::Files 1.302049
Test2::Util 1.302049
Test2::Util::ExternalMeta 1.302049
Test2::Util::HashBase 1.302049
Test2::Util::Trace 1.302049
Test::Builder 1.302049
Test::Builder::Formatter 1.302049
Test::Builder::IO::Scalar 2.113
Test::Builder::Module 1.302049
Test::Builder::Tester 1.302049
Test::Builder::Tester::Color 1.302049
Test::Builder::Tester::Tie 1.302049
Test::Builder::TodoDiag 1.302049
Test::More 1.302049
Test::Simple 1.302049
Test::Tester 1.302049
Test::Tester::Capture 1.302049
Test::Tester::CaptureRunner 1.302049
Test::Tester::Delegate 1.302049
Test::use::ok 1.302049
ok 1.302049
requirements:
ExtUtils::MakeMaker 0
File::Spec 0
File::Temp 0
PerlIO 0
Scalar::Util 1.13
Storable 0
perl 5.008001
utf8 0
Test-TCP-2.16
pathname: T/TO/TOKUHIROM/Test-TCP-2.16.tar.gz
provides:
Net::EmptyPort undef
Test::TCP 2.16
Test::TCP::CheckPort undef
requirements:
ExtUtils::MakeMaker 6.64
IO::Socket::INET 0
IO::Socket::IP 0
Test::More 0
Test::SharedFork 0.29
Time::HiRes 0
perl 5.008001
Test-Taint-1.06
pathname: P/PE/PETDANCE/Test-Taint-1.06.tar.gz
provides:
Test::Taint 1.06
requirements:
ExtUtils::MakeMaker 0
Scalar::Util 0
Test::Builder 0
Test::More 0
Tie::Array 0
Tie::Hash 0
Tie::Scalar 0
overload 0
Test-WWW-Selenium-1.36
pathname: M/MA/MATTP/Test-WWW-Selenium-1.36.tar.gz
provides:
Devel::REPL::Plugin::Selenium 1.36
Test::WWW::Selenium 1.36
WWW::Selenium 1.36
WWW::Selenium::Util 1.36
requirements:
Carp 0
Data::Dumper 0
Exporter 0
ExtUtils::MakeMaker 6.30
HTTP::Headers 0
HTTP::Request 0
IO::Socket 0
LWP::UserAgent 0
Test::Builder 0
Test::More 0
Time::HiRes 0
URI::Escape 0
base 0
namespace::clean 0
strict 0
warnings 0
Text-Diff-1.44
pathname: N/NE/NEILB/Text-Diff-1.44.tar.gz
provides:
Text::Diff 1.44
Text::Diff::Base 1.44
Text::Diff::Config 1.44
Text::Diff::Table 1.44
requirements:
Algorithm::Diff 1.19
Exporter 0
ExtUtils::MakeMaker 0
perl 5.006
TheSchwartz-1.12
pathname: J/JF/JFEARN/TheSchwartz-1.12.tar.gz
provides:
TheSchwartz 1.12
TheSchwartz::Error undef
TheSchwartz::ExitStatus undef
TheSchwartz::FuncMap undef
TheSchwartz::Job undef
TheSchwartz::JobHandle undef
TheSchwartz::Worker undef
requirements:
Data::ObjectDriver 0.04
Digest::MD5 0
Module::Build 0
Storable 0
Test::More 0
Tie-EncryptedHash-1.24
pathname: V/VI/VIPUL/Tie-EncryptedHash-1.24.tar.gz
provides:
Tie::EncryptedHash 1.8
requirements:
Crypt::Blowfish 0
Crypt::CBC 0
Crypt::DES 0
ExtUtils::MakeMaker 0
Tie-IxHash-1.23
pathname: C/CH/CHORNY/Tie-IxHash-1.23.tar.gz
provides:
Tie::IxHash 1.23
requirements:
Test::More 0
perl 5.005
TimeDate-1.19
pathname: G/GB/GBARR/TimeDate-1.19.tar.gz
provides:
Date::Format 2.23
Date::Format::Generic 2.23
Date::Language 1.10
Date::Language::Afar 0.99
Date::Language::Amharic 1.00
Date::Language::Austrian 1.01
Date::Language::Brazilian 1.01
Date::Language::Chinese 1.00
Date::Language::Chinese_GB 1.01
Date::Language::Czech 1.01
Date::Language::Danish 1.01
Date::Language::Dutch 1.02
Date::Language::English 1.01
Date::Language::Finnish 1.01
Date::Language::French 1.04
Date::Language::Gedeo 0.99
Date::Language::German 1.02
Date::Language::Greek 1.00
Date::Language::Hungarian 1.01
Date::Language::Icelandic 1.01
Date::Language::Italian 1.01
Date::Language::Norwegian 1.01
Date::Language::Oromo 0.99
Date::Language::Romanian 1.01
Date::Language::Russian 1.01
Date::Language::Russian_cp1251 1.01
Date::Language::Russian_koi8r 1.01
Date::Language::Sidama 0.99
Date::Language::Somali 0.99
Date::Language::Spanish 1.00
Date::Language::Swedish 1.01
Date::Language::Tigrinya 1.00
Date::Language::TigrinyaEritrean 1.00
Date::Language::TigrinyaEthiopian 1.00
Date::Language::Turkish 1.0
Date::Parse 2.29
Time::Zone 2.24
TimeDate undef
requirements:
ExtUtils::MakeMaker 0
Try-Tiny-0.24
pathname: E/ET/ETHER/Try-Tiny-0.24.tar.gz
provides:
Try::Tiny 0.24
requirements:
Carp 0
Exporter 5.57
ExtUtils::MakeMaker 0
constant 0
perl 5.006
strict 0
warnings 0
URI-1.71
pathname: E/ET/ETHER/URI-1.71.tar.gz
provides:
URI 1.71
URI::Escape 3.31
URI::Heuristic 4.20
URI::IRI 1.71
URI::QueryParam 1.71
URI::Split 1.71
URI::URL 5.04
URI::WithBase 2.20
URI::_foreign 1.71
URI::_generic 1.71
URI::_idna 1.71
URI::_ldap 1.71
URI::_login 1.71
URI::_punycode 1.71
URI::_query 1.71
URI::_segment 1.71
URI::_server 1.71
URI::_userpass 1.71
URI::data 1.71
URI::file 4.21
URI::file::Base 1.71
URI::file::FAT 1.71
URI::file::Mac 1.71
URI::file::OS2 1.71
URI::file::QNX 1.71
URI::file::Unix 1.71
URI::file::Win32 1.71
URI::ftp 1.71
URI::gopher 1.71
URI::http 1.71
URI::https 1.71
URI::ldap 1.71
URI::ldapi 1.71
URI::ldaps 1.71
URI::mailto 1.71
URI::mms 1.71
URI::news 1.71
URI::nntp 1.71
URI::pop 1.71
URI::rlogin 1.71
URI::rsync 1.71
URI::rtsp 1.71
URI::rtspu 1.71
URI::sftp 1.71
URI::sip 1.71
URI::sips 1.71
URI::snews 1.71
URI::ssh 1.71
URI::telnet 1.71
URI::tn3270 1.71
URI::urn 1.71
URI::urn::isbn undef
URI::urn::oid 1.71
requirements:
Exporter 5.57
ExtUtils::MakeMaker 0
MIME::Base64 2
Scalar::Util 0
parent 0
perl 5.008001
utf8 0
Variable-Magic-0.59
pathname: V/VP/VPIT/Variable-Magic-0.59.tar.gz
provides:
Variable::Magic 0.59
requirements:
Carp 0
Config 0
Exporter 0
ExtUtils::MakeMaker 0
IO::Handle 0
IO::Select 0
IPC::Open3 0
POSIX 0
Socket 0
Test::More 0
XSLoader 0
base 0
lib 0
perl 5.008
XML-NamespaceSupport-1.11
pathname: P/PE/PERIGRIN/XML-NamespaceSupport-1.11.tar.gz
provides:
XML::NamespaceSupport 1.11
requirements:
ExtUtils::MakeMaker 6.42
Test::More 0.47
XML-Parser-2.44
pathname: T/TO/TODDR/XML-Parser-2.44.tar.gz
provides:
XML::Parser 2.44
XML::Parser::Expat 2.44
XML::Parser::Style::Debug undef
XML::Parser::Style::Objects undef
XML::Parser::Style::Stream undef
XML::Parser::Style::Subs undef
XML::Parser::Style::Tree undef
requirements:
ExtUtils::MakeMaker 0
LWP::UserAgent 0
Test::More 0
perl 5.00405
XML-SAX-0.99
pathname: G/GR/GRANTM/XML-SAX-0.99.tar.gz
provides:
XML::SAX 0.99
XML::SAX::DocumentLocator undef
XML::SAX::ParserFactory 1.01
XML::SAX::PurePerl 0.99
XML::SAX::PurePerl::DebugHandler undef
XML::SAX::PurePerl::Exception undef
XML::SAX::PurePerl::Productions undef
XML::SAX::PurePerl::Reader undef
XML::SAX::PurePerl::Reader::Stream undef
XML::SAX::PurePerl::Reader::String undef
XML::SAX::PurePerl::Reader::URI undef
requirements:
ExtUtils::MakeMaker 0
File::Temp 0
XML::NamespaceSupport 0.03
XML::SAX::Base 1.05
XML-SAX-Base-1.08
pathname: G/GR/GRANTM/XML-SAX-Base-1.08.tar.gz
provides:
XML::SAX::Base 1.08
XML::SAX::Base::NoHandler 1.08
XML::SAX::Exception 1.08
requirements:
ExtUtils::MakeMaker 6.31
Test::More 0.88
XML-SAX-Expat-0.51
pathname: B/BJ/BJOERN/XML-SAX-Expat-0.51.tar.gz
provides:
XML::SAX::Expat 0.51
requirements:
ExtUtils::MakeMaker 0
XML::NamespaceSupport 0.03
XML::Parser 2.27
XML::SAX 0.03
XML::SAX::Base 1.00
XML-Simple-2.22
pathname: G/GR/GRANTM/XML-Simple-2.22.tar.gz
provides:
XML::Simple 2.22
requirements:
ExtUtils::MakeMaker 0
XML::NamespaceSupport 1.04
XML::SAX 0.15
XML::SAX::Expat 0
perl 5.008
XML-Twig-3.49
pathname: M/MI/MIROD/XML-Twig-3.49.tar.gz
provides:
XML::Twig 3.49
XML::Twig::Elt 3.49
XML::Twig::Entity 3.49
XML::Twig::Entity_list 3.49
XML::Twig::XPath 0.02
XML::Twig::XPath::Attribute 0.02
XML::Twig::XPath::Elt 0.02
XML::Twig::XPath::Namespace 0.02
requirements:
ExtUtils::MakeMaker 0
XML::Parser 2.23
XMLRPC-Lite-0.717
pathname: P/PH/PHRED/XMLRPC-Lite-0.717.tar.gz
provides:
Apache::XMLRPC::Lite 0.717
My::PingPong 0.717
XMLRPC 0.717
XMLRPC::Constants 0.717
XMLRPC::Data 0.717
XMLRPC::Deserializer 0.717
XMLRPC::Lite 0.717
XMLRPC::SOM 0.717
XMLRPC::Serializer 0.717
XMLRPC::Server 0.717
XMLRPC::Server::Parameters 0.717
XMLRPC::Test 0.717
XMLRPC::Test::Server 0.717
XMLRPC::Transport::HTTP 0.717
XMLRPC::Transport::HTTP::Apache 0.717
XMLRPC::Transport::HTTP::CGI 0.717
XMLRPC::Transport::HTTP::Daemon 0.717
XMLRPC::Transport::POP3 0.717
XMLRPC::Transport::POP3::Server 0.717
XMLRPC::Transport::TCP 0.717
XMLRPC::Transport::TCP::Server 0.717
requirements:
ExtUtils::MakeMaker 0
SOAP::Lite 0.716
SOAP::Transport::TCP 0.715
common-sense-3.74
pathname: M/ML/MLEHMANN/common-sense-3.74.tar.gz
provides:
common::sense 3.74
requirements:
ExtUtils::MakeMaker 0
libwww-perl-5.835
pathname: G/GA/GAAS/libwww-perl-5.835.tar.gz
provides:
Bundle::LWP 5.835
File::Listing 5.814
File::Listing::apache 5.814
File::Listing::dosftp 5.814
File::Listing::netware 5.814
File::Listing::unix 5.814
File::Listing::vms 5.814
HTML::Form 5.829
HTML::Form::FileInput 5.829
HTML::Form::IgnoreInput 5.829
HTML::Form::ImageInput 5.829
HTML::Form::Input 5.829
HTML::Form::KeygenInput 5.829
HTML::Form::ListInput 5.829
HTML::Form::SubmitInput 5.829
HTML::Form::TextInput 5.829
HTTP::Config 5.835
HTTP::Cookies 5.833
HTTP::Cookies::Microsoft 5.821
HTTP::Cookies::Netscape 5.832
HTTP::Daemon 5.827
HTTP::Daemon::ClientConn 5.827
HTTP::Date 5.831
HTTP::Headers 5.835
HTTP::Headers::Auth 5.817
HTTP::Headers::ETag 5.810
HTTP::Headers::Util 5.817
HTTP::Message 5.835
HTTP::Negotiate 5.835
HTTP::Request 5.827
HTTP::Request::Common 5.824
HTTP::Response 5.835
HTTP::Status 5.817
LWP 5.835
LWP::Authen::Basic undef
LWP::Authen::Digest undef
LWP::Authen::Ntlm 5.835
LWP::ConnCache 5.810
LWP::Debug undef
LWP::DebugFile undef
LWP::MediaTypes 5.835
LWP::MemberMixin undef
LWP::Protocol 5.829
LWP::Protocol::GHTTP undef
LWP::Protocol::MyFTP undef
LWP::Protocol::cpan undef
LWP::Protocol::data undef
LWP::Protocol::file undef
LWP::Protocol::ftp undef
LWP::Protocol::gopher undef
LWP::Protocol::http undef
LWP::Protocol::http10 undef
LWP::Protocol::http::Socket undef
LWP::Protocol::http::SocketMethods undef
LWP::Protocol::https undef
LWP::Protocol::https10 undef
LWP::Protocol::https::Socket undef
LWP::Protocol::loopback undef
LWP::Protocol::mailto undef
LWP::Protocol::nntp undef
LWP::Protocol::nogo undef
LWP::RobotUA 5.835
LWP::Simple 5.835
LWP::UserAgent 5.835
Net::HTTP 5.834
Net::HTTP::Methods 5.834
Net::HTTP::NB 5.810
Net::HTTPS 5.819
WWW::RobotRules 5.832
WWW::RobotRules::AnyDBM_File 5.835
WWW::RobotRules::InCore 5.832
requirements:
Compress::Raw::Zlib 0
Digest::MD5 0
ExtUtils::MakeMaker 0
HTML::Parser 3.33
HTML::Tagset 0
IO::Compress::Deflate 0
IO::Compress::Gzip 0
IO::Uncompress::Gunzip 0
IO::Uncompress::Inflate 0
IO::Uncompress::RawInflate 0
MIME::Base64 2.1
Net::FTP 2.58
URI 1.10
perl 5.006
namespace-clean-0.27
pathname: R/RI/RIBASUSHI/namespace-clean-0.27.tar.gz
provides:
namespace::clean 0.27
requirements:
B::Hooks::EndOfScope 0.12
ExtUtils::MakeMaker 0
Package::Stash 0.23
Sub::Name 0.04
perl 5.008001
version-0.9917
pathname: J/JP/JPEACOCK/version-0.9917.tar.gz
provides:
version 0.9917
version::regex 0.9917
version::vpp 0.9917
version::vxs 0.9917
requirements:
ExtUtils::MakeMaker 6.17
File::Temp 0.13
Test::More 0.45
parent 0.221
perl 5.006002
|