aboutsummaryrefslogtreecommitdiff
path: root/src/share/algebra/category.daase
blob: 834af7d611ae84f8258ee2018c07127309f47658 (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
(283984 . 3662084404)        
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Fraction| |#2|) |#3|) . T)) 
((((|Fraction| (|Integer|))) |has| #1=(|Fraction| |#2|) (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| #1# (|RetractableTo| (|Integer|))) ((#1#) . T)) 
((((|Fraction| |#2|)) . T)) 
((((|Integer|)) |has| #1=(|Fraction| |#2|) (|LinearlyExplicitRingOver| (|Integer|))) ((#1#) . T)) 
((((|Fraction| |#2|)) . T)) 
((((|Fraction| |#2|) |#3|) . T)) 
(|has| (|Fraction| |#2|) (|CharacteristicZero|)) 
((((|Fraction| |#2|) |#3|) . T)) 
(|has| (|Fraction| |#2|) (|CharacteristicNonZero|)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(|has| (|Fraction| |#2|) (|DifferentialRing|)) 
((($) OR (|has| (|Fraction| |#2|) (|DifferentialRing|)) (|has| (|Fraction| |#2|) (|DifferentialSpace|)))) 
(OR (|has| (|Fraction| |#2|) (|DifferentialRing|)) (|has| (|Fraction| |#2|) (|DifferentialSpace|))) 
((((|Fraction| |#2|)) . T)) 
((($ (|Symbol|)) OR (|has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|))) (|has| (|Fraction| |#2|) (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) OR (|has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|))) (|has| (|Fraction| |#2|) (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|)))) 
((((|Fraction| |#2|)) . T)) 
(((|#3|) . T)) 
(((#1=(|Fraction| |#2|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|Integer|)) |has| #1=(|Fraction| |#2|) (|LinearlyExplicitRingOver| (|Integer|))) ((#1#) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(((|#1| |#2| |#3|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|SquareMatrix| |#2| |#1|)) . T) ((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|SquareMatrix| |#2| |#1|)) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Integer|) (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Integer|) (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) (((|UniversalSegment| (|Integer|)) $) . T) ((|#1| |#2|) . T)) 
((((|Integer|) (|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((($) . T)) 
((((|Complex| (|Float|))) . T) (((|DoubleFloat|)) . T) (((|Float|)) . T)) 
((((|Fraction| #1=(|Integer|))) . T) ((#1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|Fraction| (|Integer|)) #1#) . T) (($ $) . T)) 
((($) . T)) 
((($ $) . T) (((|Kernel| $) $) . T)) 
((((|Fraction| #1=(|Integer|))) . T) ((#1#) . T) (((|Kernel| $)) . T)) 
((((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $))) . T) (($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (((|Kernel| $)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|NonNegativeInteger|)) . T)) 
((((|NonNegativeInteger|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| #1=(|OneDimensionalArray| |#1|) #1#) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1| |#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|RadixExpansion| 2)) . T) (((|Fraction| (|Integer|))) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|Integer|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) . T) (((|Pattern| (|Integer|))) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T) (((|UniversalSegment| (|Integer|)) $) . T)) 
((((|InputForm|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|InputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Symbol|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|BalancedPAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|BalancedPAdicInteger| |#1|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|Symbol|) #1=(|BalancedPAdicInteger| |#1|)) |has| #1# (|InnerEvalable| (|Symbol|) #1#)) ((#1# #1#) |has| #1# (|Evalable| #1#))) 
(((#1=(|BalancedPAdicInteger| |#1|)) |has| #1# (|Evalable| #1#))) 
(((#1=(|BalancedPAdicInteger| |#1|) $) |has| #1# (|Eltable| #1# #1#))) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((($) . T) (((|BalancedPAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|Integer|)) . T) (((|BalancedPAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
((((|BalancedPAdicInteger| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|Integer|) (|Byte|)) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) (|Byte|)) . T)) 
((((|Integer|) (|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|String|)) . T) (((|PrimitiveArray| (|Byte|))) . T) (((|OutputForm|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|NonNegativeInteger|)) . T)) 
((((|NonNegativeInteger|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|) |#3|) . T)) 
((((|Integer|) #1=(|NonNegativeInteger|)) . T) ((|#3| #1#) . T)) 
((((|OutputForm|)) . T)) 
(((|#3|) . T)) 
((((|List| $)) . T) (((|List| |#3|)) . T) (((|SquareMatrix| |#2| |#3|)) . T) (((|DirectProduct| |#2| |#3|)) . T) ((|#3|) . T)) 
(((|#3| (|NonNegativeInteger|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Identifier|)) . T)) 
((((|Constructor|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|List| (|Character|))) . T) (((|String|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T) (((|Integer|)) . T)) 
(((|#2|) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) (($) . T) (((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|BinaryOperation| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1| |#1| |#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|FiniteFieldCategory|))) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#1|) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|)))) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)) (|has| |#1| (|FiniteFieldCategory|))) 
((($) OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)) (|has| |#1| (|FiniteFieldCategory|)))) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (AND (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| (|Symbol|) |#1|)) ((|#1| |#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1| $) |has| |#1| (|Eltable| |#1| |#1|))) 
(((|#1|) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T)) 
((((|Integer|)) |has| |#1| (|PatternMatchable| (|Integer|))) (((|Float|)) |has| |#1| (|PatternMatchable| (|Float|)))) 
(((|#1|) . T)) 
((((|Integer|)) . T) (($) OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| (|SparseUnivariatePolynomial| |#1|)) . T)) 
(((|#1| (|SparseUnivariatePolynomial| |#1|)) . T)) 
((($) OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1| |#1|) . T)) 
((($) OR (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
(((|#1| (|SparseUnivariatePolynomial| |#1|)) . T)) 
(|has| |#1| (|FiniteFieldCategory|)) 
(|has| |#1| (|FiniteFieldCategory|)) 
(|has| |#1| (|FiniteFieldCategory|)) 
(OR (|has| |#1| (|Finite|)) (|has| |#1| (|FiniteFieldCategory|))) 
(((|#1|) . T)) 
((((|Complex| (|DoubleFloat|))) |has| |#1| . #1=((|RealConstant|))) (((|Complex| (|Float|))) |has| |#1| . #1#) (((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|))) (((|SparseUnivariatePolynomial| |#1|)) . T) (((|Pattern| (|Integer|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| (|Float|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Float|))))) 
(AND (|has| |#1| (|EuclideanDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(AND (|has| |#1| (|RadicalCategory|)) (|has| |#1| (|TranscendentalFunctionCategory|))) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(|has| |#1| (|TranscendentalFunctionCategory|)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T) ((#2=(|Fraction| |#1|) #2#) . T) ((|#1| |#1|) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T) (((|Integer|)) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T) (((|Fraction| |#1|)) . T) ((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Identifier|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|List| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|RadixExpansion| 10)) . T) (((|Fraction| (|Integer|))) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|Integer|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) . T) (((|Pattern| (|Integer|))) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Expression| |#1|)) . T)) 
((((|Expression| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Expression| |#1|)) . T) (((|Integer|)) . T) (($) . T)) 
((((|Expression| |#1|)) . T) (($) . T)) 
((((|Expression| |#1|)) . T) (((|Integer|)) . T)) 
((((|Expression| |#1|)) . T)) 
((($) . T)) 
(((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Float|)) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|InputForm|)) . T) (((|DoubleFloat|)) . T) (((|Float|)) . T) (((|Pattern| (|Float|))) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(((|#1| #1=(|Vector| |#1|) #1#) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| #1=(|Vector| |#1|) #1#) . T)) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|BasicType|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(((|#2| |#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|Ring|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|)))) 
((((|OutputForm|)) OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CoercibleTo| (|OutputForm|))) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) (((|Vector| |#2|)) . T)) 
(((|#2|) |has| |#2| (|Ring|))) 
((((|Symbol|)) AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|)))) 
((((|Symbol|)) OR (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#2| (|Ring|))))) 
((($ (|Symbol|)) OR (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#2| (|Ring|))))) 
(((|#2|) |has| |#2| (|Ring|))) 
(OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|)))) 
((($) OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|))))) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
((((|Integer|)) OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) ((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|Ring|))) (($) |has| |#2| (|Ring|))) 
(AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) 
(|has| |#2| (|Finite|)) 
(((|#2|) . T)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|Ring|))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) (($) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
(((|#2|) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
(((|#2|) |has| |#2| (|SetCategory|))) 
((((|Integer|)) OR (AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (|has| |#2| (|Ring|))) ((|#2|) |has| |#2| (|SetCategory|)) (((|Fraction| (|Integer|))) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
(((|#2|) |has| |#2| (|SetCategory|)) (((|Integer|)) AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (((|Fraction| (|Integer|))) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
((((|Integer|) |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)))) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(OR (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|))) 
(OR (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|))) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(((|#2|) |has| |#2| (|Field|))) 
(((|#1| |#2|) . T)) 
((((|List| |#1|)) . T)) 
((((|List| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
((((|List| |#1|)) . T) (((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#2| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Float|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Pattern| (|Integer|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|))))) 
((($) . T)) 
(((|#2| (|DirectProduct| (|#| |#1|) (|NonNegativeInteger|))) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T)) 
(|has| |#2| (|CharacteristicNonZero|)) 
(|has| |#2| (|CharacteristicZero|)) 
(OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2| |#2|) . T) (($ $) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2|) . T)) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2| (|DirectProduct| (|#| |#1|) (|NonNegativeInteger|))) . T)) 
(((|#2|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((($ $) . T) ((#1=(|OrderedVariableList| |#1|) $) . T) ((#1# |#2|) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
((($ (|OrderedVariableList| |#1|)) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) ((|#2|) . T) (((|OrderedVariableList| |#1|)) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#2| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#2|) . T) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (((|OrderedVariableList| |#1|)) . T)) 
(((|#2| (|DirectProduct| (|#| |#1|) (|NonNegativeInteger|)) (|OrderedVariableList| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Identifier|)) . T)) 
((((|Constructor|)) . T) (((|OutputForm|)) . T)) 
((((|NonNegativeInteger|) (|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#4| |#4|) OR (|has| |#4| (|CommutativeRing|)) (|has| |#4| (|Field|)) (|has| |#4| (|Ring|)))) 
(((|#4|) OR (|has| |#4| (|CommutativeRing|)) (|has| |#4| (|Field|)) (|has| |#4| (|Monoid|)) (|has| |#4| (|Ring|)))) 
(((|#4|) OR (|has| |#4| (|CommutativeRing|)) (|has| |#4| (|Field|)) (|has| |#4| (|Ring|)))) 
((((|OutputForm|)) . T) (((|Vector| |#4|)) . T)) 
(((|#4|) |has| |#4| (|Ring|))) 
((((|Symbol|)) AND (|has| |#4| (|PartialDifferentialRing| (|Symbol|))) (|has| |#4| (|Ring|)))) 
((((|Symbol|)) OR (AND (|has| |#4| (|PartialDifferentialRing| (|Symbol|))) (|has| |#4| (|Ring|))) (AND (|has| |#4| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#4| (|Ring|))))) 
((($ (|Symbol|)) OR (AND (|has| |#4| (|PartialDifferentialRing| (|Symbol|))) (|has| |#4| (|Ring|))) (AND (|has| |#4| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#4| (|Ring|))))) 
(((|#4|) |has| |#4| (|Ring|))) 
(OR (AND (|has| |#4| (|DifferentialRing|)) (|has| |#4| (|Ring|))) (AND (|has| |#4| (|DifferentialSpace|)) (|has| |#4| (|Ring|)))) 
((($) OR (AND (|has| |#4| (|DifferentialRing|)) (|has| |#4| (|Ring|))) (AND (|has| |#4| (|DifferentialSpace|)) (|has| |#4| (|Ring|))))) 
(|has| |#4| (|Ring|)) 
(|has| |#4| (|Ring|)) 
(|has| |#4| (|Ring|)) 
(|has| |#4| (|Ring|)) 
(|has| |#4| (|Ring|)) 
(((|#3|) . T) ((|#2|) . T) (((|Integer|)) . T) ((|#4|) OR (|has| |#4| (|CommutativeRing|)) (|has| |#4| (|Field|)) (|has| |#4| (|Monoid|)) (|has| |#4| (|Ring|))) (($) |has| |#4| (|Ring|))) 
(AND (|has| |#4| (|DifferentialRing|)) (|has| |#4| (|Ring|))) 
(|has| |#4| (|Finite|)) 
(((|#4|) . T)) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) |has| |#4| (|Ring|))) 
(((|#3|) . T) ((|#2|) . T) ((|#4|) OR (|has| |#4| (|CommutativeRing|)) (|has| |#4| (|Field|)) (|has| |#4| (|Ring|))) (($) |has| |#4| (|Ring|)) (((|Integer|)) AND (|has| |#4| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#4| (|Ring|)))) 
(((|#4|) |has| |#4| (|Ring|)) (((|Integer|)) AND (|has| |#4| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#4| (|Ring|)))) 
(((|#4|) |has| |#4| (|SetCategory|))) 
((((|Integer|)) OR (AND (|has| |#4| (|RetractableTo| (|Integer|))) (|has| |#4| (|SetCategory|))) (|has| |#4| (|Ring|))) ((|#4|) |has| |#4| (|SetCategory|)) (((|Fraction| (|Integer|))) AND (|has| |#4| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#4| (|SetCategory|)))) 
(((|#4|) |has| |#4| (|SetCategory|)) (((|Integer|)) AND (|has| |#4| (|RetractableTo| (|Integer|))) (|has| |#4| (|SetCategory|))) (((|Fraction| (|Integer|))) AND (|has| |#4| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#4| (|SetCategory|)))) 
((((|Integer|) |#4|) . T)) 
((((|Integer|) |#4|) . T)) 
((((|Integer|) |#4|) . T)) 
(((|#4|) OR (|has| |#4| (|CommutativeRing|)) (|has| |#4| (|Field|)) (|has| |#4| (|Monoid|)))) 
(((|#4|) OR (|has| |#4| (|CommutativeRing|)) (|has| |#4| (|Field|)))) 
(|has| |#4| (|OrderedAbelianMonoidSup|)) 
(|has| |#4| (|OrderedAbelianMonoidSup|)) 
(OR (|has| |#4| (|OrderedAbelianMonoidSup|)) (|has| |#4| (|OrderedSet|))) 
(OR (|has| |#4| (|OrderedAbelianMonoidSup|)) (|has| |#4| (|OrderedSet|))) 
(|has| |#4| (|OrderedAbelianMonoidSup|)) 
(|has| |#4| (|OrderedAbelianMonoidSup|)) 
(((|#4|) |has| |#4| (|Field|))) 
(((|#1| |#4|) . T)) 
(((|#3| |#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|)))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Monoid|)) (|has| |#3| (|Ring|)))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|)))) 
((((|OutputForm|)) . T) (((|Vector| |#3|)) . T)) 
(((|#3|) |has| |#3| (|Ring|))) 
((((|Symbol|)) AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|)))) 
((((|Symbol|)) OR (AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#3| (|Ring|))))) 
((($ (|Symbol|)) OR (AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#3| (|Ring|))))) 
(((|#3|) |has| |#3| (|Ring|))) 
(OR (AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|DifferentialSpace|)) (|has| |#3| (|Ring|)))) 
((($) OR (AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|DifferentialSpace|)) (|has| |#3| (|Ring|))))) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(((|#2|) . T) (((|Integer|)) . T) ((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Monoid|)) (|has| |#3| (|Ring|))) (($) |has| |#3| (|Ring|))) 
(AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) 
(|has| |#3| (|Finite|)) 
(((|#3|) . T)) 
(((|#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
(((|#3| |#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) |has| |#3| (|Ring|))) 
(((|#2|) . T) ((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|))) (($) |has| |#3| (|Ring|)) (((|Integer|)) AND (|has| |#3| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#3| (|Ring|)))) 
(((|#3|) |has| |#3| (|Ring|)) (((|Integer|)) AND (|has| |#3| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#3| (|Ring|)))) 
(((|#3|) |has| |#3| (|SetCategory|))) 
((((|Integer|)) OR (AND (|has| |#3| (|RetractableTo| (|Integer|))) (|has| |#3| (|SetCategory|))) (|has| |#3| (|Ring|))) ((|#3|) |has| |#3| (|SetCategory|)) (((|Fraction| (|Integer|))) AND (|has| |#3| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#3| (|SetCategory|)))) 
(((|#3|) |has| |#3| (|SetCategory|)) (((|Integer|)) AND (|has| |#3| (|RetractableTo| (|Integer|))) (|has| |#3| (|SetCategory|))) (((|Fraction| (|Integer|))) AND (|has| |#3| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#3| (|SetCategory|)))) 
((((|Integer|) |#3|) . T)) 
((((|Integer|) |#3|) . T)) 
((((|Integer|) |#3|) . T)) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Monoid|)))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)))) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(OR (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|OrderedSet|))) 
(OR (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|OrderedSet|))) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(((|#3|) |has| |#3| (|Field|))) 
(((|#1| |#3|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|))) 
((($) OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)))) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|DifferentialRing|)) 
((($) . T)) 
(((|#1| (|IndexedExponents| |#3|) |#3|) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Integer|)) AND (|has| |#1| (|PatternMatchable| (|Integer|))) (|has| |#3| (|PatternMatchable| (|Integer|)))) (((|Float|)) AND (|has| |#1| (|PatternMatchable| (|Float|))) (|has| |#3| (|PatternMatchable| (|Float|))))) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) ((|#3|) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (($ |#3|) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|))) ((|#3|) . T)) 
((($ $) . T) ((|#2| $) |has| |#1| . #1=((|DifferentialRing|))) ((|#2| |#1|) |has| |#1| . #1#) ((|#3| |#1|) . T) ((|#3| $) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| |#3|)) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|Integer|)) . T) (($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| |#3|)) . T)) 
((((|Pattern| (|Integer|))) AND (|has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (|has| |#3| (|ConvertibleTo| (|Pattern| (|Integer|))))) (((|Pattern| (|Float|))) AND (|has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (|has| |#3| (|ConvertibleTo| (|Pattern| (|Float|))))) (((|InputForm|)) AND (|has| |#1| (|ConvertibleTo| (|InputForm|))) (|has| |#3| (|ConvertibleTo| (|InputForm|))))) 
((((|SparseMultivariatePolynomial| |#1| |#2|)) . T) ((|#3|) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((|#2|) . T)) 
((((|SparseMultivariatePolynomial| |#1| |#2|)) . T) (((|Integer|)) . T) ((|#3|) . T) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#2|) . T)) 
(((|#1| |#2| |#3| (|IndexedExponents| |#3|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#2| |#2|) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
(((|#2|) . T) (((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|Field|))) 
(((#1=(|Symbol|)) |has| |#1| (|PartialDifferentialRing| #1#))) 
((($ #1=(|Symbol|)) |has| |#1| (|PartialDifferentialRing| #1#))) 
((#1=((|Symbol|)) |has| |#1| (|PartialDifferentialRing| . #1#))) 
(((|#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)))) 
(((|#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)))) 
(((|#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Ring|)))) 
(((|#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Ring|)))) 
(((|#1| |#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Ring|)))) 
((((|Integer|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|)))) 
(((|#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Ring|))) (($) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|)))) 
(OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(|has| |#1| (|Group|)) 
(OR (|has| |#1| (|Group|)) (|has| |#1| (|Monoid|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|Group|)) (|has| |#1| (|Monoid|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|)) (|has| |#1| (|SemiGroup|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(((|#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Ring|))) (($) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) (((|Integer|)) OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|)))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|AbelianSemiGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|AbelianSemiGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Group|)) (|has| |#1| (|Monoid|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|)) (|has| |#1| (|SemiGroup|)) (|has| |#1| (|SetCategory|))) 
((((|Boolean|)) |has| |#1| (|SetCategory|)) (((|OutputForm|)) OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|AbelianSemiGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Group|)) (|has| |#1| (|Monoid|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|)) (|has| |#1| (|SemiGroup|)) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|AbelianSemiGroup|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|Group|)) (|has| |#1| (|Monoid|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|Ring|)) (|has| |#1| (|SemiGroup|)) (|has| |#1| (|SetCategory|))) 
((#1=((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| . #1#))) 
(((|#1|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
(((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
(|has| (|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|) (|CharacteristicNonZero|)) 
(|has| (|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|) (|CharacteristicZero|)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|Symbol|) #1=(|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) |has| #1# (|InnerEvalable| (|Symbol|) #1#)) ((#1# #1#) |has| #1# (|Evalable| #1#))) 
(((#1=(|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) |has| #1# (|Evalable| #1#))) 
(((#1=(|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|) $) |has| #1# (|Eltable| #1# #1#))) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((($) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|Integer|)) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeriesWithExponentialSingularity| |#1| |#2| |#3| |#4|)) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) |has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|AbelianSemiGroup|)) (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) 
((((|OutputForm|)) . T)) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|AbelianSemiGroup|)) (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Group|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|)) (|has| |#1| (|SemiGroup|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Group|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|)) (|has| |#1| (|SemiGroup|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
((((|Kernel| $) $) . T) (($ $) . T)) 
((($) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|)) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|))) 
((((|Integer|)) OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) (($) OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) ((|#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Ring|))) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|)) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|)) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|)) (($) |has| |#1| (|IntegralDomain|))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|)) (($) |has| |#1| (|IntegralDomain|))) 
(((|#1| |#1|) |has| |#1| (|CommutativeRing|)) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|IntegralDomain|)) (($ $) |has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) |has| |#1| (|Ring|))) 
((($) OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|Ring|))) ((|#1|) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Ring|))) (((|Fraction| (|Integer|))) |has| |#1| (|IntegralDomain|)) (((|Integer|)) AND (|has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#1| (|Ring|)))) 
(((|#1|) |has| |#1| (|Ring|)) (((|Integer|)) AND (|has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#1| (|Ring|)))) 
(((|#1|) . T)) 
((((|Integer|)) |has| |#1| (|PatternMatchable| (|Integer|))) (((|Float|)) |has| |#1| (|PatternMatchable| (|Float|)))) 
(((|#1|) . T)) 
(|has| |#1| (|Group|)) 
((((|Symbol|)) |has| |#1| (|Ring|))) 
((($ (|Symbol|)) |has| |#1| (|Ring|))) 
((((|Symbol|)) |has| |#1| (|Ring|))) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Integer|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| (|Float|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Float|))))) 
((((|AlgebraicNumber|)) AND (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|RetractableTo| (|Integer|)))) (((|Kernel| $)) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) OR (AND (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|RetractableTo| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) (((|Fraction| (|Polynomial| |#1|))) |has| |#1| (|IntegralDomain|)) (((|Polynomial| |#1|)) |has| |#1| (|Ring|)) (((|Symbol|)) . T)) 
((((|AlgebraicNumber|)) AND (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|RetractableTo| (|Integer|)))) (((|Integer|)) OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|RetractableTo| (|Integer|))) (|has| |#1| (|Ring|))) ((|#1|) . T) (((|Kernel| $)) . T) (($) |has| |#1| (|IntegralDomain|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) (((|Fraction| (|Polynomial| |#1|))) |has| |#1| (|IntegralDomain|)) (((|Polynomial| |#1|)) |has| |#1| (|Ring|)) (((|Symbol|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
((((|OutputForm|)) . T)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T)) 
(((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#1| |#1|) . T)) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| (|Fraction| (|Integer|)) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((((|Fraction| (|Integer|)) |#1|) . T) (($ $) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|)))) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|Integer|)) . T)) 
(((#1=(|Integer|) #1#) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|PrimeField| |#1|) #1#) . T) (($ $) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|PrimeField| |#1|) #1#) . T) (($ $) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($) . T)) 
((((|PrimeField| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T)) 
((((|PrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|PrimeField| |#1|) #1#) . T) (($ $) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($) . T)) 
((((|PrimeField| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|Finite|))) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
(|has| |#1| (|Finite|)) 
((($) |has| |#1| (|Finite|))) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|FileName|) |#1|) . T)) 
((((|DoubleFloat|)) . T)) 
((($) . T)) 
(((#1=(|Integer|)) . T) (((|Fraction| #1#)) . T)) 
((((|Float|)) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|InputForm|)) . T) (((|String|)) . T) (((|DoubleFloat|)) . T) (((|Float|)) . T) (((|Pattern| (|Float|))) . T)) 
((((|DoubleFloat|)) . T) (((|OutputForm|)) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OrderedFreeMonoid| |#1|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|String|)) . T)) 
((((|String|)) . T)) 
((((|String|)) . T) (((|OutputForm|)) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
((((|OutputForm|)) . T)) 
(((|#3|) . T) (((|Integer|)) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3| |#3|) . T)) 
(((|#3|) . T)) 
((((|Fraction| |#2|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|UniqueFactorizationDomain|)) 
((#1=((|InputForm|)) |has| |#1| (|ConvertibleTo| . #1#)) (((|DoubleFloat|)) . #2=(|has| |#1| (|RealConstant|))) (((|Float|)) . #2#)) 
(|has| |#1| (|RealConstant|)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|UniqueFactorizationDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
((#1=($ $) |has| |#1| (|Eltable| . #1#)) ((|#1| $) |has| |#1| (|Eltable| |#1| |#1|))) 
((#1=($) |has| |#1| (|Evalable| . #1#)) ((|#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1|) . T)) 
((#1=((|Symbol|) $) |has| |#1| (|InnerEvalable| . #1#)) (($ $) |has| |#1| (|Evalable| $)) ((|#1| |#1|) |has| |#1| (|Evalable| |#1|)) (((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| (|Symbol|) |#1|))) 
(((|#1|) . T)) 
(|has| |#1| (|DifferentialRing|)) 
((($) OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)))) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|))) 
(((|#1|) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|)))) 
(((|#1|) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1| |#1|) . T) (($ $) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(OR (|has| |#1| (|CharacteristicZero|)) (|has| |#1| (|OrderedIntegralDomain|))) 
(((|#1|) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|)))) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|))) 
((($) OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)))) 
(|has| |#1| (|DifferentialRing|)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T) (($ $) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| (|Symbol|) |#1|)) ((|#1| |#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1| $) |has| |#1| (|Eltable| |#1| |#1|))) 
(((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T)) 
((((|Integer|)) |has| |#1| (|PatternMatchable| (|Integer|))) (((|Float|)) |has| |#1| (|PatternMatchable| (|Float|)))) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(OR (|has| |#1| (|OrderedIntegralDomain|)) (|has| |#1| (|OrderedSet|))) 
(OR (|has| |#1| (|OrderedIntegralDomain|)) (|has| |#1| (|OrderedSet|))) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(|has| |#1| (|OrderedIntegralDomain|)) 
(((|#1|) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|RealConstant|)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Integer|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| (|Float|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Float|)) . #1=(|has| |#1| (|RealConstant|))) (((|DoubleFloat|)) . #1#)) 
((((|Integer|)) . T) ((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T) (((|Symbol|)) |has| |#1| (|RetractableTo| (|Symbol|)))) 
((((|Fraction| (|Integer|))) |has| |#1| . #1=((|RetractableTo| (|Integer|)))) (((|Integer|)) |has| |#1| . #1#) (((|Symbol|)) |has| |#1| (|RetractableTo| (|Symbol|))) ((|#1|) . T)) 
(|has| |#1| (|StepThrough|)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
((((|SExpression|)) . T) (((|Symbol|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|) (|Fraction| (|Polynomial| |#1|))) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
((((|SquareMatrix| |#2| #1=(|Fraction| (|Polynomial| |#1|)))) . T) ((#1#) . T)) 
((((|OutputForm|)) . T)) 
((((|SquareMatrix| |#2| #1=(|Fraction| (|Polynomial| |#1|)))) . T) ((#1#) . T) (((|Integer|)) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
(((#1=(|Fraction| (|Polynomial| |#1|)) #1#) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
((((|Fraction| (|Polynomial| |#1|))) . T)) 
((((|InputForm|)) |has| |#2| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Float|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Pattern| (|Integer|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|))))) 
((($) . T)) 
(((|#2| |#3|) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T)) 
(|has| |#2| (|CharacteristicNonZero|)) 
(|has| |#2| (|CharacteristicZero|)) 
(OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2| |#2|) . T) (($ $) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2|) . T)) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2| |#3|) . T)) 
(((|#2|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((($ $) . T) ((#1=(|OrderedVariableList| |#1|) $) . T) ((#1# |#2|) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
((($ (|OrderedVariableList| |#1|)) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) ((|#2|) . T) (((|OrderedVariableList| |#1|)) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#2| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#2|) . T) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (((|OrderedVariableList| |#1|)) . T)) 
(((|#2| |#3| (|OrderedVariableList| |#1|)) . T)) 
(((|#2| |#2|) . T) ((|#6| |#6|) . T)) 
(((|#2|) . T) ((|#6|) . T)) 
(((|#2|) . T) ((|#6|) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) (((|Integer|)) . T) ((|#6|) . T)) 
(((|#2|) . T) ((|#6|) . T)) 
(((|#2|) . T) ((|#6|) . T)) 
(((|#2|) . T) ((|#6|) . T)) 
(((|#4|) . T)) 
(((|#4|) . T)) 
((((|List| |#4|)) . T) (((|OutputForm|)) . T)) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
((((|InputForm|)) |has| |#4| (|ConvertibleTo| (|InputForm|)))) 
(((|#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
((((|OutputForm|)) . T)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T)) 
(((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#1| |#1|) . T)) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| (|Fraction| (|Integer|)) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((($ (|Variable| |#2|)) . T) (($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((((|Fraction| (|Integer|)) |#1|) . T) (($ $) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|)))) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
(((|#1|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
(((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#4|) . T)) 
((((|InputForm|)) |has| |#4| (|ConvertibleTo| (|InputForm|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
((((|OutputForm|)) . T) (((|List| |#4|)) . T)) 
(((|#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
((((|InputForm|)) . T) (((|Fraction| (|SparseUnivariatePolynomial| (|Integer|)))) . T) (((|DoubleFloat|)) . T) (((|Float|)) . T)) 
((((|Fraction| #1=(|Integer|))) . T) ((#1#) . T)) 
((((|Float|)) . T) (((|DoubleFloat|)) . T) (((|OutputForm|)) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
(((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
((((|InputForm|)) |has| |#2| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Float|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Pattern| (|Integer|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|))))) 
((($) . T)) 
(((|#2| (|HomogeneousDirectProduct| (|#| |#1|) (|NonNegativeInteger|))) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T)) 
(|has| |#2| (|CharacteristicNonZero|)) 
(|has| |#2| (|CharacteristicZero|)) 
(OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2| |#2|) . T) (($ $) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2|) . T)) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2| (|HomogeneousDirectProduct| (|#| |#1|) (|NonNegativeInteger|))) . T)) 
(((|#2|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((($ $) . T) ((#1=(|OrderedVariableList| |#1|) $) . T) ((#1# |#2|) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
((($ (|OrderedVariableList| |#1|)) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) ((|#2|) . T) (((|OrderedVariableList| |#1|)) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#2| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#2|) . T) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (((|OrderedVariableList| |#1|)) . T)) 
(((|#2| (|HomogeneousDirectProduct| (|#| |#1|) (|NonNegativeInteger|)) (|OrderedVariableList| |#1|)) . T)) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|BasicType|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(((|#2| |#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|Ring|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|)))) 
((((|OutputForm|)) OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CoercibleTo| (|OutputForm|))) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) (((|Vector| |#2|)) . T)) 
(((|#2|) |has| |#2| (|Ring|))) 
((((|Symbol|)) AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|)))) 
((((|Symbol|)) OR (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#2| (|Ring|))))) 
((($ (|Symbol|)) OR (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#2| (|Ring|))))) 
(((|#2|) |has| |#2| (|Ring|))) 
(OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|)))) 
((($) OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|))))) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
((((|Integer|)) OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) ((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|Ring|))) (($) |has| |#2| (|Ring|))) 
(AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) 
(|has| |#2| (|Finite|)) 
(((|#2|) . T)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|Ring|))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) (($) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
(((|#2|) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
(((|#2|) |has| |#2| (|SetCategory|))) 
((((|Integer|)) OR (AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (|has| |#2| (|Ring|))) ((|#2|) |has| |#2| (|SetCategory|)) (((|Fraction| (|Integer|))) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
(((|#2|) |has| |#2| (|SetCategory|)) (((|Integer|)) AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (((|Fraction| (|Integer|))) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
((((|Integer|) |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)))) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(OR (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|))) 
(OR (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|))) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(((|#2|) |has| |#2| (|Field|))) 
(((|#1| |#2|) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
((((|RadixExpansion| 16)) . T) (((|Fraction| (|Integer|))) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|Integer|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) . T) (((|Pattern| (|Integer|))) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((((|String|)) . T) (((|OutputForm|)) . T)) 
((($) . T)) 
((((|Complex| (|Float|))) . T) (((|DoubleFloat|)) . T) (((|Float|)) . T)) 
((((|Fraction| #1=(|Integer|))) . T) ((#1#) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|Fraction| (|Integer|)) #1#) . T) (($ $) . T)) 
((($) . T)) 
((($ $) . T) (((|Kernel| $) $) . T)) 
((((|Fraction| #1=(|Integer|))) . T) ((#1#) . T) (((|Kernel| $)) . T)) 
((((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $))) . T) (($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (((|Kernel| $)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#2| |#3|) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T)) 
((((|Integer|) (|Boolean|)) . T) (((|UniversalSegment| (|Integer|)) $) . T)) 
((((|InputForm|)) . T)) 
((((|Boolean|)) . T)) 
((((|Boolean|)) . T)) 
((((|String|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1|) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1|) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1|) . T)) 
(AND (|has| |#1| (|SetCategory|)) (|has| |#2| (|SetCategory|))) 
((((|OutputForm|)) AND (|has| |#1| (|SetCategory|)) (|has| |#2| (|SetCategory|)))) 
(((|#1| |#2|) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1|) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|List| (|IndexedProductTerm| |#1| |#2|))) . T)) 
(((|#1|) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|Pair| |#2| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|InnerPrimeField| |#1|)) . T)) 
((((|InnerPrimeField| |#1|)) . T)) 
((((|InnerPrimeField| |#1|)) . T)) 
((((|InnerPrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|InnerPrimeField| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((#1=(|InnerPrimeField| |#1|) #1#) . T) (($ $) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|InnerPrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|InnerPrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
((((|InnerPrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|InnerPrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|InnerPrimeField| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($) . T)) 
((((|InnerPrimeField| |#1|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((((|List| (|IndexedProductTerm| (|NonNegativeInteger|) |#1|))) . T)) 
((((|NonNegativeInteger|)) . T)) 
((((|NonNegativeInteger|) |#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|IP4Address|)) . T)) 
((((|SExpression|)) . T)) 
((((|List| $)) . T) (((|String|)) . T) (((|Symbol|)) . T) (((|Integer|)) . T) (((|DoubleFloat|)) . T) (((|OutputForm|)) . T)) 
((((|Integer|) $) . T) (((|List| (|Integer|)) $) . T)) 
((((|OutputForm|)) . T)) 
((((|String|) (|Symbol|) (|Integer|) (|DoubleFloat|) (|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T)) 
((((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) . T) ((#1=(|Integer|)) . T) (((|Pattern| #1#)) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
(((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T) (($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T)) 
((((|Integer|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T)) 
(((|#1|) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T)) 
((((|Fraction| (|Integer|))) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))) 
((((|OutputForm|)) . T)) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
(|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))) 
((($ $) . T) (((|Integer|) |#1|) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))))) 
((($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))))) 
(((|#1| (|Integer|) (|SingletonAsOrderedSet|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
(((|#1| (|Integer|)) . T)) 
(((|#1| (|Integer|)) . T)) 
((($) |has| |#1| (|IntegralDomain|))) 
((($) |has| |#1| (|IntegralDomain|))) 
((($) |has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) . T)) 
((($ $) |has| |#1| (|IntegralDomain|)) ((|#1| |#1|) . T)) 
((($) |has| |#1| (|IntegralDomain|)) (((|Integer|)) . T)) 
(((|#1|) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) . T) (((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
((((|TypeAst|)) . T) (((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Integer|) |#1|) |has| |#2| (|FramedNonAssociativeAlgebra| |#1|))) 
(((|#1|) OR (|has| |#2| (|FiniteRankNonAssociativeAlgebra| |#1|)) (|has| |#2| (|FramedNonAssociativeAlgebra| |#1|)))) 
((#1=(|#1|) |has| |#2| (|FramedNonAssociativeAlgebra| . #1#))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#2|) . T) (((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T)) 
((((|Byte|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Byte|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Byte|)) . T) (((|JVMBytecode|)) . T)) 
((((|Byte|)) . T) (((|JVMBytecode|)) . T)) 
((((|Byte|)) . T) (((|JVMBytecode|)) . T) (((|OutputForm|)) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|String|) |#1|) . T)) 
((((|String|) |#1|) . T)) 
((((|String|) |#1|) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T) ((|#1|) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T) ((|#1|) . T)) 
(((#1=(|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)) #1#) |has| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)) (|Evalable| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)))) ((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) |has| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)) (|Evalable| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)))) ((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|String|) |#1|) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
(((|#1|) . T) (((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|String|) |#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|FileName|) (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((#1=((|InputForm|)) |has| |#1| (|ConvertibleTo| . #1#)) (((|Pattern| (|Float|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Pattern| (|Integer|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|))))) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2| |#2|) . T)) 
(((|#2|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#2|) . T) (($) . T)) 
(((|#2|) . T) (((|Integer|)) . T)) 
(((|#2|) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
((((|Fraction| |#2|)) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
(|has| |#2| (|DifferentialRing|)) 
(((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|)))) 
(OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|))) 
(((|#2|) . T)) 
((($ (|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| |#2| (|PartialDifferentialRing| (|Symbol|)))) 
(((|#2|) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|XPBWPolynomial| |#1| |#2|)) . T) (((|XDistributedPolynomial| |#1| |#2|)) . T) (((|OutputForm|)) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) . T)) 
((((|OutputForm|)) . T)) 
((((|String|) (|Any|)) . T)) 
((((|String|) (|Any|)) . T)) 
((((|Symbol|) #1=(|Any|)) . T) (((|String|) #1#) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| #1=(|Any|)))) . T) ((#1#) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| #1=(|Any|)))) . T) ((#1#) . T)) 
(((#1=(|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|))) #1#) |has| (|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|))) (|Evalable| (|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))))) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) |has| (|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|))) (|Evalable| (|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))))) 
((((|String|) (|Any|)) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) . T)) 
(((#1=(|Any|)) . T) (((|Record| (|:| |key| (|String|)) (|:| |entry| #1#))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| (|Any|)))) . T)) 
((((|String|) (|Any|)) . T)) 
((((|Integer|) |#1|) |has| |#2| (|FramedNonAssociativeAlgebra| |#1|))) 
(((|#1|) OR (|has| |#2| (|FiniteRankNonAssociativeAlgebra| |#1|)) (|has| |#2| (|FramedNonAssociativeAlgebra| |#1|)))) 
((#1=(|#1|) |has| |#2| (|FramedNonAssociativeAlgebra| . #1#))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#2|) . T) (((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
((((|List| (|IndexedProductTerm| |#1| (|LinearBasis| |#2|)))) . T)) 
(((|#1|) . T)) 
(((|#1| (|LinearBasis| |#2|)) . T)) 
((((|LinearBasis| |#2|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|LinearElement| |#1| |#2|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T) (((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|OrderedAbelianGroup|)) 
(|has| |#1| (|OrderedAbelianGroup|)) 
(|has| |#1| (|OrderedAbelianGroup|)) 
(|has| |#1| (|OrderedAbelianGroup|)) 
(|has| |#1| (|OrderedAbelianGroup|)) 
(|has| |#1| (|OrderedAbelianGroup|)) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T) ((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
(((|#2| |#2|) . T) ((|#1| |#1|) . T)) 
(((|#1|) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
(((|#2|) . T)) 
((((|LyndonWord| |#1|)) . T)) 
((((|LyndonWord| |#1|)) . T)) 
(((|#2| (|LyndonWord| |#1|)) . T)) 
(((|#2|) . T)) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|XDistributedPolynomial| |#1| |#2|)) . T) (((|XRecursivePolynomial| |#1| |#2|)) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T) ((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (ATTRIBUTE (|commutative| "*")))) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|Matrix| |#2|)) . T) (((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) ((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|Symbol|)) |has| |#2| (|PartialDifferentialRing| (|Symbol|)))) 
((((|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
((($ (|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#2|) . T)) 
(OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|))) 
((($) OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|)))) 
(|has| |#2| (|DifferentialRing|)) 
(((|#2|) . T)) 
((($) . T) ((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T)) 
((((|Integer|)) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| |#1| |#2| #1=(|DirectProduct| |#1| |#2|) #1#) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) . T)) 
(((|#1| |#2| #1=(|DirectProduct| |#1| |#2|) #1#) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|FreeMagma| |#1|)) . T) (((|OrderedFreeMonoid| |#1|)) . T) (((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|TypeAst|)) . T) (((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((#1=((|InputForm|)) |has| |#1| (|ConvertibleTo| . #1#))) 
(((|#1| #1=(|Vector| |#1|) #1#) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| #1=(|Vector| |#1|) #1#) . T)) 
((#1=((|OutputForm|)) |has| |#1| (|CoercibleTo| . #1#))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|OutputForm|)) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| $) (|Fraction| $)) |has| |#1| (|IntegralDomain|)) (($ $) . T) ((|#1| |#1|) . T)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(|has| |#1| (|Field|)) 
(((|#1| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (((|SingletonAsOrderedSet|)) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|))) (((|SingletonAsOrderedSet|)) . T)) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(((|#2|) . T) (((|Integer|)) . T) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (((|SingletonAsOrderedSet|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|Integer|)) . T) (($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
((((|SingletonAsOrderedSet|)) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((#1=(|SingletonAsOrderedSet|) |#1|) . T) ((#1# $) . T) (($ $) . T)) 
((($) . T)) 
(|has| |#1| (|StepThrough|)) 
(((|#1|) . T)) 
((((|Record| (|:| |index| |#1|) (|:| |exponent| |#2|))) . T)) 
((((|Record| (|:| |index| |#1|) (|:| |exponent| |#2|))) . T)) 
((((|Record| (|:| |index| |#1|) (|:| |exponent| |#2|))) . T) (((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#2| |#2|) . T)) 
((((|BasicOperator|)) . T) ((|#1|) . T)) 
((((|BasicOperator|)) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
(((|#1|) . T) (((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|SemiGroupOperation| |#1|)) . T) (((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1| |#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#2| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Float|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Pattern| (|Integer|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|))))) 
((($) . T)) 
(((|#2| (|IndexedExponents| (|OrderedVariableList| |#1|))) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T)) 
(|has| |#2| (|CharacteristicNonZero|)) 
(|has| |#2| (|CharacteristicZero|)) 
(OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2| |#2|) . T) (($ $) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2|) . T)) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) |has| |#2| (|CommutativeRing|)) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|)))) 
(((|#2| (|IndexedExponents| (|OrderedVariableList| |#1|))) . T)) 
(((|#2|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|)))) ((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
((($ $) . T) ((#1=(|OrderedVariableList| |#1|) $) . T) ((#1# |#2|) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
((($ (|OrderedVariableList| |#1|)) . T)) 
((((|OrderedVariableList| |#1|)) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) ((|#2|) . T) (((|OrderedVariableList| |#1|)) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#2| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#2|) . T) (($) OR (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (((|OrderedVariableList| |#1|)) . T)) 
(((|#2| (|IndexedExponents| #1=(|OrderedVariableList| |#1|)) #1#) . T)) 
(AND (|has| |#1| (|Finite|)) (|has| |#2| (|Finite|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#1|) . T)) 
(((|#1|) . T) ((|#2|) . T)) 
(((|#1|) . T) ((|#2|) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T) (((|Integer|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| (|IndexedExponents| |#2|) |#2|) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Integer|)) AND (|has| |#1| (|PatternMatchable| (|Integer|))) (|has| |#2| (|PatternMatchable| (|Integer|)))) (((|Float|)) AND (|has| |#1| (|PatternMatchable| (|Float|))) (|has| |#2| (|PatternMatchable| (|Float|))))) 
(((|#2|) . T)) 
((($ |#2|) . T)) 
(((|#2|) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| |#2|)) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|SparseMultivariatePolynomial| |#1| |#2|)) . T) (((|Polynomial| |#1|)) |has| |#2| (|ConvertibleTo| (|Symbol|))) (((|OutputForm|)) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T) (($) . T)) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (($) . T)) 
((((|SparseMultivariatePolynomial| |#1| |#2|)) . T) ((|#2|) . T) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) (((|Integer|)) . T)) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
((((|SparseMultivariatePolynomial| |#1| |#2|)) . T) ((|#2|) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| (|IndexedExponents| |#2|)) . T)) 
(((|#2| |#1|) . T) ((|#2| $) . T) (($ $) . T)) 
((($) . T)) 
((((|Polynomial| |#1|)) |has| |#2| (|ConvertibleTo| (|Symbol|))) (((|String|)) AND (|has| |#1| (|RetractableTo| (|Integer|))) (|has| |#2| (|ConvertibleTo| (|Symbol|)))) (((|Pattern| (|Integer|))) AND (|has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|))))) (((|Pattern| (|Float|))) AND (|has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Float|))))) (((|InputForm|)) AND (|has| |#1| (|ConvertibleTo| (|InputForm|))) (|has| |#2| (|ConvertibleTo| (|InputForm|))))) 
(((|#1| (|IndexedExponents| |#2|) |#2|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((($) . T)) 
((((|SparseUnivariatePolynomial| |#1|)) . T) (((|OutputForm|)) . T)) 
((((|Fraction| $) (|Fraction| $)) |has| |#1| (|IntegralDomain|)) (($ $) . T) ((|#1| |#1|) . T)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(|has| |#1| (|Field|)) 
(((|#1| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (((|SingletonAsOrderedSet|)) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|))) (((|SingletonAsOrderedSet|)) . T)) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((((|SparseUnivariatePolynomial| |#1|)) . T) (((|Integer|)) . T) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (((|SingletonAsOrderedSet|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|Integer|)) . T) (($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
((((|SparseUnivariatePolynomial| |#1|)) . T) (((|SingletonAsOrderedSet|)) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((#1=(|SingletonAsOrderedSet|) |#1|) . T) ((#1# $) . T) (($ $) . T)) 
((($) . T)) 
(|has| |#1| (|StepThrough|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) ((|#1|) . T)) 
((($) . T) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| (|Symbol|) |#1|)) ((|#1| |#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1| $) |has| |#1| (|Eltable| |#1| |#1|))) 
((((|Quaternion| |#1|)) . T) ((|#1|) . T)) 
((((|Quaternion| |#1|)) . T) (((|Integer|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| (|Quaternion| |#1|) (|RetractableTo| (|Fraction| (|Integer|)))))) 
((((|Quaternion| |#1|)) . T) ((|#1|) . T) (((|Integer|)) OR (|has| |#1| (|RetractableTo| (|Integer|))) (|has| (|Quaternion| |#1|) (|RetractableTo| (|Integer|)))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| (|Quaternion| |#1|) (|RetractableTo| (|Fraction| (|Integer|)))))) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|BasicType|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|Ring|))) 
(((|#2| |#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|Ring|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|)))) 
((((|OutputForm|)) OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|AbelianMonoid|)) (|has| |#2| (|AbelianSemiGroup|)) (|has| |#2| (|CancellationAbelianMonoid|)) (|has| |#2| (|CoercibleTo| (|OutputForm|))) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Finite|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|)) (|has| |#2| (|Ring|)) (|has| |#2| (|SetCategory|))) (((|Vector| |#2|)) . T)) 
(((|#2|) |has| |#2| (|Ring|))) 
((((|Symbol|)) AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|)))) 
((((|Symbol|)) OR (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#2| (|Ring|))))) 
((($ (|Symbol|)) OR (AND (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#2| (|Ring|))))) 
(((|#2|) |has| |#2| (|Ring|))) 
(OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|)))) 
((($) OR (AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) (AND (|has| |#2| (|DifferentialSpace|)) (|has| |#2| (|Ring|))))) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
(|has| |#2| (|Ring|)) 
((((|Integer|)) OR (|has| |#2| (|AbelianGroup|)) (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) ((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)) (|has| |#2| (|Ring|))) (($) |has| |#2| (|Ring|))) 
(AND (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|Ring|))) 
(|has| |#2| (|Finite|)) 
(((|#2|) . T)) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|Ring|))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Ring|))) (($) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
(((|#2|) |has| |#2| (|Ring|)) (((|Integer|)) AND (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#2| (|Ring|)))) 
(((|#2|) |has| |#2| (|SetCategory|))) 
((((|Integer|)) OR (AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (|has| |#2| (|Ring|))) ((|#2|) |has| |#2| (|SetCategory|)) (((|Fraction| (|Integer|))) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
(((|#2|) |has| |#2| (|SetCategory|)) (((|Integer|)) AND (|has| |#2| (|RetractableTo| (|Integer|))) (|has| |#2| (|SetCategory|))) (((|Fraction| (|Integer|))) AND (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#2| (|SetCategory|)))) 
((((|Integer|) |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
((((|Integer|) |#2|) . T)) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|Monoid|)))) 
(((|#2|) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)))) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(OR (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|))) 
(OR (|has| |#2| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedSet|))) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(|has| |#2| (|OrderedAbelianMonoidSup|)) 
(((|#2|) |has| |#2| (|Field|))) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|))) 
((($) OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)))) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|DifferentialRing|)) 
((($) . T)) 
(((|#1| (|IndexedExponents| #1=(|OrderlyDifferentialVariable| (|Symbol|))) #1#) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (((|OrderlyDifferentialVariable| (|Symbol|))) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|OrderlyDifferentialVariable| (|Symbol|))) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|))) (((|OrderlyDifferentialVariable| (|Symbol|))) . T)) 
((($ $) . T) ((#1=(|Symbol|) $) |has| |#1| . #2=((|DifferentialRing|))) ((#1# |#1|) |has| |#1| . #2#) ((#3=(|OrderlyDifferentialVariable| #1#) |#1|) . T) ((#3# $) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| (|OrderlyDifferentialVariable| (|Symbol|)))) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|Integer|)) . T) (($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| (|OrderlyDifferentialVariable| (|Symbol|)))) . T)) 
((((|SparseMultivariatePolynomial| |#1| #1=(|Symbol|))) . T) (((|OrderlyDifferentialVariable| #1#)) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((#1#) . T)) 
((((|SparseMultivariatePolynomial| |#1| #1=(|Symbol|))) . T) (((|Integer|)) . T) (((|OrderlyDifferentialVariable| #1#)) . T) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) ((#1#) . T)) 
(((|#1| #1=(|Symbol|) #2=(|OrderlyDifferentialVariable| #1#) (|IndexedExponents| #2#)) . T)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
((((|Fraction| (|Integer|))) . #1=(|has| |#2| (|Field|))) (($) . #1#)) 
((((|Fraction| (|Integer|))) . #1=(|has| |#2| (|Field|))) (($) . #1#)) 
((((|Fraction| (|Integer|))) . #1=(|has| |#2| (|Field|))) (($) . #1#)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(|has| |#2| (|Field|)) 
(((|#2|) . T)) 
((($) . T)) 
((((|Fraction| (|Integer|))) . #1=(|has| |#2| (|Field|))) (($) . #1#) ((|#2|) . T) (((|Integer|)) . T)) 
((((|Fraction| (|Integer|))) |has| |#2| (|Field|)) (($) . T)) 
(((|#2|) . T) (((|OutputForm|)) . T)) 
((((|Fraction| (|Integer|))) |has| |#2| (|Field|)) (($) . T) (((|Integer|)) . T)) 
((((|Fraction| (|Integer|))) |has| |#2| (|Field|)) (($) . T)) 
((((|Fraction| (|Integer|))) |has| |#2| (|Field|)) (($) . T)) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Field|)) (($ $) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|DifferentialRing|)) 
((($) |has| |#1| (|DifferentialRing|))) 
(|has| |#1| (|DifferentialRing|)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) ((|#2|) . T)) 
((($) . T) ((|#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
((((|Integer|)) . T) ((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) . T)) 
(|has| |#1| (|OrderedRing|)) 
((($) |has| |#1| (|OrderedRing|))) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
((($) |has| |#1| (|OrderedRing|)) (((|Integer|)) OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|)))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) OR (|has| |#1| (|OrderedRing|)) (|has| |#1| (|RetractableTo| (|Integer|)))) ((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#1| |#1|) . T)) 
((((|BasicOperator|)) . T) ((|#1|) . T)) 
((((|BasicOperator|)) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T) (((|Integer|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Identifier|)) . T)) 
(|has| |#1| (|OrderedRing|)) 
((($) |has| |#1| (|OrderedRing|))) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(|has| |#1| (|OrderedRing|)) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
((($) |has| |#1| (|OrderedRing|)) (((|Integer|)) OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|)))) 
(OR (|has| |#1| (|AbelianGroup|)) (|has| |#1| (|OrderedRing|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) OR (|has| |#1| (|OrderedRing|)) (|has| |#1| (|RetractableTo| (|Integer|)))) ((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((#1=((|OutputForm|)) |has| |#1| (|CoercibleTo| . #1#)) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) ((|#1|) . T)) 
((($) . T) ((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
((((|Integer|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) ((|#2|) . T)) 
((($) . T) ((|#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) . T)) 
((((|Variable| |#1|)) . T) (((|Integer|)) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Pattern| (|Integer|))) . T) (((|Pattern| (|Float|))) . T) (((|InputForm|)) . T) (((|Symbol|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|Polynomial| |#1|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Polynomial| |#1|)) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T)) 
((((|Polynomial| |#1|)) . T) (((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|PAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|PAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|PAdicInteger| |#1|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|Symbol|) #1=(|PAdicInteger| |#1|)) |has| #1# (|InnerEvalable| (|Symbol|) #1#)) ((#1# #1#) |has| #1# (|Evalable| #1#))) 
(((#1=(|PAdicInteger| |#1|)) |has| #1# (|Evalable| #1#))) 
(((#1=(|PAdicInteger| |#1|) $) |has| #1# (|Eltable| #1# #1#))) 
((((|PAdicInteger| |#1|)) . T)) 
((($) . T) (((|PAdicInteger| |#1|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|Integer|)) . T) (((|PAdicInteger| |#1|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|PAdicInteger| |#1|)) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#2| (|CharacteristicNonZero|)) 
(OR (|has| |#2| (|CharacteristicZero|)) (|has| |#2| (|OrderedIntegralDomain|))) 
(((|#2|) . T)) 
((((|Symbol|)) |has| |#2| (|PartialDifferentialRing| (|Symbol|)))) 
((((|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
((($ (|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#2|) . T)) 
(OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|))) 
((($) OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|)))) 
(|has| |#2| (|DifferentialRing|)) 
(((|#2|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#2|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#2|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#2|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#2|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#2| |#2|) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T) (($ $) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|Symbol|) |#2|) |has| |#2| (|InnerEvalable| (|Symbol|) |#2|)) ((|#2| |#2|) |has| |#2| (|Evalable| |#2|))) 
(((|#2|) |has| |#2| (|Evalable| |#2|))) 
(((|#2| $) |has| |#2| (|Eltable| |#2| |#2|))) 
(((|#2|) . T)) 
((($) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T)) 
((((|Integer|)) |has| |#2| (|PatternMatchable| (|Integer|))) (((|Float|)) |has| |#2| (|PatternMatchable| (|Float|)))) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(OR (|has| |#2| (|OrderedIntegralDomain|)) (|has| |#2| (|OrderedSet|))) 
(OR (|has| |#2| (|OrderedIntegralDomain|)) (|has| |#2| (|OrderedSet|))) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(|has| |#2| (|OrderedIntegralDomain|)) 
(((|#2|) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
(|has| |#2| (|RealConstant|)) 
((((|InputForm|)) |has| |#2| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Integer|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|)))) (((|Pattern| (|Float|))) |has| |#2| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Float|)) . #1=(|has| |#2| (|RealConstant|))) (((|DoubleFloat|)) . #1#)) 
((((|Integer|)) . T) ((|#2|) . T) (($) . T) (((|Fraction| (|Integer|))) . T) (((|Symbol|)) |has| |#2| (|RetractableTo| (|Symbol|)))) 
((((|Fraction| (|Integer|))) |has| |#2| . #1=((|RetractableTo| (|Integer|)))) (((|Integer|)) |has| |#2| . #1#) (((|Symbol|)) |has| |#2| (|RetractableTo| (|Symbol|))) ((|#2|) . T)) 
(|has| |#2| (|StepThrough|)) 
(((|#2|) . T)) 
(AND (|has| |#1| (|SetCategory|)) (|has| |#2| (|SetCategory|))) 
(AND (|has| |#1| (|SetCategory|)) (|has| |#2| (|SetCategory|))) 
((((|OutputForm|)) OR (AND (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#2| (|CoercibleTo| (|OutputForm|)))) (AND (|has| |#1| (|SetCategory|)) (|has| |#2| (|SetCategory|))))) 
((((|Color|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Symbol|)) . T) ((|#1|) . T)) 
((((|Symbol|)) . T) ((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|LyndonWord| |#1|)) . T)) 
((((|LyndonWord| |#1|)) . T)) 
((((|OrderedFreeMonoid| |#1|)) . T) (((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|Tree| |#1|)) . T) (((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T)) 
((((|OutputForm|)) . T)) 
(OR (|has| |#1| (|Finite|)) (|has| |#1| (|OrderedSet|))) 
(OR (|has| |#1| (|Finite|)) (|has| |#1| (|OrderedSet|))) 
(((|#1|) . T)) 
((((|List| (|Permutation| |#1|))) . T)) 
((((|List| (|Permutation| |#1|))) . T)) 
((((|List| (|Permutation| |#1|))) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
(|has| $ (|CharacteristicZero|)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((($) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Fraction| (|Integer|))) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#1|)) . T) (((|OutputForm|)) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1| |#1|) . T) (($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|List| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|))) (((|Pattern| (|Float|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (((|Pattern| (|Integer|))) |has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|))))) 
((($) . T)) 
(((|#1| (|IndexedExponents| (|Symbol|))) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
(((|#1| (|IndexedExponents| (|Symbol|))) . T)) 
(((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((($ $) . T) ((#1=(|Symbol|) $) . T) ((#1# |#1|) . T)) 
((((|Symbol|)) . T)) 
((($ (|Symbol|)) . T)) 
((((|Symbol|)) . T)) 
((((|Float|)) |has| |#1| (|PatternMatchable| (|Float|))) (((|Integer|)) |has| |#1| (|PatternMatchable| (|Integer|)))) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T) (((|Symbol|)) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#1|) . T) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (((|Symbol|)) . T)) 
(((|#1| (|IndexedExponents| #1=(|Symbol|)) #1#) . T)) 
((((|SingleInteger|)) . T) (((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|OutputForm|)) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (($) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) (((|Integer|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|))) 
(AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|))) 
(OR (AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|))) (AND (|has| |#1| (|OrderedSet|)) (|has| |#2| (|OrderedSet|)))) 
(OR (AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|))) (AND (|has| |#1| (|OrderedSet|)) (|has| |#2| (|OrderedSet|)))) 
(AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|))) 
(AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|))) 
((((|Integer|)) AND (|has| |#1| (|AbelianGroup|)) (|has| |#2| (|AbelianGroup|)))) 
(AND (|has| |#1| (|AbelianGroup|)) (|has| |#2| (|AbelianGroup|))) 
(AND (|has| |#1| (|Group|)) (|has| |#2| (|Group|))) 
(OR (AND (|has| |#1| (|AbelianGroup|)) (|has| |#2| (|AbelianGroup|))) (AND (|has| |#1| (|CancellationAbelianMonoid|)) (|has| |#2| (|CancellationAbelianMonoid|))) (AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|)))) 
(OR (AND (|has| |#1| (|AbelianGroup|)) (|has| |#2| (|AbelianGroup|))) (AND (|has| |#1| (|AbelianMonoid|)) (|has| |#2| (|AbelianMonoid|))) (AND (|has| |#1| (|CancellationAbelianMonoid|)) (|has| |#2| (|CancellationAbelianMonoid|))) (AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|)))) 
(OR (AND (|has| |#1| (|AbelianGroup|)) (|has| |#2| (|AbelianGroup|))) (AND (|has| |#1| (|AbelianMonoid|)) (|has| |#2| (|AbelianMonoid|))) (AND (|has| |#1| (|CancellationAbelianMonoid|)) (|has| |#2| (|CancellationAbelianMonoid|))) (AND (|has| |#1| (|OrderedAbelianMonoidSup|)) (|has| |#2| (|OrderedAbelianMonoidSup|)))) 
(OR (AND (|has| |#1| (|Group|)) (|has| |#2| (|Group|))) (AND (|has| |#1| (|Monoid|)) (|has| |#2| (|Monoid|)))) 
(OR (AND (|has| |#1| (|Group|)) (|has| |#2| (|Group|))) (AND (|has| |#1| (|Monoid|)) (|has| |#2| (|Monoid|)))) 
(AND (|has| |#1| (|Finite|)) (|has| |#2| (|Finite|))) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|List| (|PositiveInteger|))) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|DirectProduct| |#1| |#2|) |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|)))) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|))) 
((($) OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)))) 
(|has| |#1| (|DifferentialRing|)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|EntireRing|)) (|has| |#1| (|Field|))) 
((((|Integer|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
((($) . T) (((|Integer|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T) (($) OR (|has| |#1| (|EntireRing|)) (|has| |#1| (|Field|))) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T) (($) OR (|has| |#1| (|EntireRing|)) (|has| |#1| (|Field|))) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|EntireRing|)) (|has| |#1| (|Field|))) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Field|))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Symbol|) |#1|) |has| |#1| (|InnerEvalable| (|Symbol|) |#1|)) ((|#1| |#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1|) |has| |#1| (|Evalable| |#1|))) 
(((|#1| $) |has| |#1| (|Eltable| |#1| |#1|))) 
(((|#1|) . T)) 
((($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Field|)) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Fraction| |#2|) |#3|) . T)) 
((((|Fraction| (|Integer|))) |has| #1=(|Fraction| |#2|) (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| #1# (|RetractableTo| (|Integer|))) ((#1#) . T)) 
((((|Fraction| |#2|)) . T)) 
((((|Integer|)) |has| #1=(|Fraction| |#2|) (|LinearlyExplicitRingOver| (|Integer|))) ((#1#) . T)) 
((((|Fraction| |#2|)) . T)) 
((((|Fraction| |#2|) |#3|) . T)) 
(|has| (|Fraction| |#2|) (|CharacteristicZero|)) 
((((|Fraction| |#2|) |#3|) . T)) 
(|has| (|Fraction| |#2|) (|CharacteristicNonZero|)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(|has| (|Fraction| |#2|) (|DifferentialRing|)) 
((($) OR (|has| (|Fraction| |#2|) (|DifferentialRing|)) (|has| (|Fraction| |#2|) (|DifferentialSpace|)))) 
(OR (|has| (|Fraction| |#2|) (|DifferentialRing|)) (|has| (|Fraction| |#2|) (|DifferentialSpace|))) 
((((|Fraction| |#2|)) . T)) 
((($ (|Symbol|)) OR (|has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|))) (|has| (|Fraction| |#2|) (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) OR (|has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|))) (|has| (|Fraction| |#2|) (|PartialDifferentialSpace| (|Symbol|))))) 
((((|Symbol|)) |has| (|Fraction| |#2|) (|PartialDifferentialRing| (|Symbol|)))) 
((((|Fraction| |#2|)) . T)) 
(((|#3|) . T)) 
(((#1=(|Fraction| |#2|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
((((|Integer|)) |has| #1=(|Fraction| |#2|) (|LinearlyExplicitRingOver| (|Integer|))) ((#1#) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Fraction| |#2|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T) (((|Integer|)) . T)) 
(((|#1| |#2| |#3|) . T)) 
((((|Fraction| (|Integer|))) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((#1=(|Integer|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) . T) (($ $) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) . T) (((|Pattern| (|Integer|))) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|Fraction| (|Integer|))) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T) (($) . T) (((|Fraction| (|Integer|))) . T)) 
((((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (($) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) . T) ((#2=(|Integer|) #2#) . T) (($ $) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) . T)) 
(((|#1|) . T) (((|Integer|)) OR (|has| |#1| (|RetractableTo| (|Integer|))) (|has| (|Fraction| (|Integer|)) (|RetractableTo| (|Integer|)))) (((|Fraction| (|Integer|))) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#4|) . T)) 
(((|#4|) . T)) 
((((|List| |#4|)) . T) (((|OutputForm|)) . T)) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
((((|InputForm|)) |has| |#4| (|ConvertibleTo| (|InputForm|)))) 
(((|#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| |#1|) . T) (($ $) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (($) . T)) 
(((|#1|) . T) (((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1| (|IndexedExponents| #1=(|OrderedVariableList| |#2|)) #1# (|NewSparseMultivariatePolynomial| |#1| #1#)) . T)) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) . T)) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) . T)) 
((((|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) . T) (((|OutputForm|)) . T)) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) |has| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)) (|Evalable| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))))) 
(((#1=(|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)) #1#) |has| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)) (|Evalable| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))))) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) . T)) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) . T)) 
((((|InputForm|)) |has| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)) (|ConvertibleTo| (|InputForm|)))) 
((((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) . T)) 
(((|#1| (|IndexedExponents| #1=(|OrderedVariableList| |#2|)) #1# (|NewSparseMultivariatePolynomial| |#1| #1#)) . T)) 
(((|#1| (|IndexedExponents| #1=(|OrderedVariableList| |#2|)) #1# (|NewSparseMultivariatePolynomial| |#1| #1#)) . T)) 
((#1=((|InputForm|)) |has| |#3| (|ConvertibleTo| . #1#))) 
(((|#3|) |has| |#3| (|Field|))) 
(((|#3| |#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
((((|Matrix| |#3|)) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T) ((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
(((|#3| |#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)))) 
(((|#1| |#2| |#3| (|DirectProduct| |#2| |#3|) (|DirectProduct| |#1| |#3|)) . T)) 
(|has| |#1| (|SetCategory|)) 
((((|OutputForm|)) |has| |#1| (|SetCategory|))) 
(|has| |#1| (|SetCategory|)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
((((|Symbol|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T)) 
((((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) . T) ((#1=(|Integer|)) . T) (((|Pattern| #1#)) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|Integer|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Equation| |#3|)) . T)) 
((((|Equation| |#3|)) . T)) 
(((|#3| |#3|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#3| |#3|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T)) 
(((|#1|) |has| |#1| (|Field|))) 
((((|Symbol|)) AND (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|))))) 
((((|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))))) 
((($ (|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))))) 
(((|#1|) |has| |#1| (|Field|))) 
(OR (AND (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|Field|))) (AND (|has| |#1| (|DifferentialSpace|)) (|has| |#1| (|Field|))) (|has| |#1| (|FiniteFieldCategory|))) 
((($) OR (AND (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|Field|))) (AND (|has| |#1| (|DifferentialSpace|)) (|has| |#1| (|Field|))) (|has| |#1| (|FiniteFieldCategory|)))) 
(OR (AND (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|Field|))) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) 
(OR (|has| |#1| (|Finite|)) (|has| |#1| (|FiniteFieldCategory|))) 
(|has| |#1| (|FiniteFieldCategory|)) 
(|has| |#1| (|FiniteFieldCategory|)) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (|has| |#1| (|FiniteFieldCategory|))) 
(|has| |#1| (|FiniteFieldCategory|)) 
(((|#1| |#2|) . T)) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($ $) . T) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1| |#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T)) 
((((|Integer|)) . T) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|)) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#1|) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#1| |#2|) . T)) 
(((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Field|)) (|has| |#1| (|FiniteFieldCategory|))) ((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| |#2|) . T)) 
((((|Symbol|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|))) 
((($) OR (|has| |#1| (|DifferentialRing|)) (|has| |#1| (|DifferentialSpace|)))) 
((((|OutputForm|)) . T)) 
(|has| |#1| (|DifferentialRing|)) 
((($) . T)) 
(((|#1| (|IndexedExponents| #1=(|SequentialDifferentialVariable| (|Symbol|))) #1#) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (((|SequentialDifferentialVariable| (|Symbol|))) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|SequentialDifferentialVariable| (|Symbol|))) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|))) (((|SequentialDifferentialVariable| (|Symbol|))) . T)) 
((($ $) . T) ((#1=(|Symbol|) $) |has| |#1| . #2=((|DifferentialRing|))) ((#1# |#1|) |has| |#1| . #2#) ((#3=(|SequentialDifferentialVariable| #1#) |#1|) . T) ((#3# $) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| (|SequentialDifferentialVariable| (|Symbol|)))) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|Integer|)) . T) (($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
(((|#1| (|IndexedExponents| (|SequentialDifferentialVariable| (|Symbol|)))) . T)) 
((((|SparseMultivariatePolynomial| |#1| #1=(|Symbol|))) . T) (((|SequentialDifferentialVariable| #1#)) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) ((#1#) . T)) 
((((|SparseMultivariatePolynomial| |#1| #1=(|Symbol|))) . T) (((|Integer|)) . T) (((|SequentialDifferentialVariable| #1#)) . T) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) ((#1#) . T)) 
(((|#1| #1=(|Symbol|) #2=(|SequentialDifferentialVariable| #1#) (|IndexedExponents| #2#)) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|List| |#1|)) |has| |#1| (|OrderedRing|))) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
((((|OutputForm|)) |has| |#1| (|SetCategory|))) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(|has| (|Segment| |#1|) (|SetCategory|)) 
((((|OutputForm|)) |has| (|Segment| |#1|) (|SetCategory|))) 
(|has| (|Segment| |#1|) (|SetCategory|)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
(|has| |#1| (|Finite|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|List| $)) . T) (((|String|)) . T) (((|Symbol|)) . T) (((|Integer|)) . T) (((|DoubleFloat|)) . T) (((|OutputForm|)) . T)) 
((((|Integer|) $) . T) (((|List| (|Integer|)) $) . T)) 
((((|OutputForm|)) . T)) 
((((|String|) (|Symbol|) (|Integer|) (|DoubleFloat|) (|OutputForm|)) . T)) 
((((|List| $)) . T) ((|#1|) . T) ((|#2|) . T) ((|#3|) . T) ((|#4|) . T) ((|#5|) . T)) 
((((|Integer|) $) . T) (((|List| (|Integer|)) $) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2| |#3| |#4| |#5|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1| |#1| |#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|))) 
(OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|AbelianMonoid|)) (|has| |#3| (|CancellationAbelianMonoid|)) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|Ring|))) 
(OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|AbelianMonoid|)) (|has| |#3| (|AbelianSemiGroup|)) (|has| |#3| (|CancellationAbelianMonoid|)) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Finite|)) (|has| |#3| (|Monoid|)) (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|OrderedSet|)) (|has| |#3| (|Ring|)) (|has| |#3| (|SetCategory|))) 
(OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|AbelianMonoid|)) (|has| |#3| (|AbelianSemiGroup|)) (|has| |#3| (|BasicType|)) (|has| |#3| (|CancellationAbelianMonoid|)) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Finite|)) (|has| |#3| (|Monoid|)) (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|OrderedSet|)) (|has| |#3| (|Ring|)) (|has| |#3| (|SetCategory|))) 
(OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|AbelianMonoid|)) (|has| |#3| (|AbelianSemiGroup|)) (|has| |#3| (|CancellationAbelianMonoid|)) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|Ring|))) 
(OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|CancellationAbelianMonoid|)) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|Ring|))) 
(((|#3| |#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|)))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Monoid|)) (|has| |#3| (|Ring|)))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|)))) 
((((|OutputForm|)) OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|AbelianMonoid|)) (|has| |#3| (|AbelianSemiGroup|)) (|has| |#3| (|CancellationAbelianMonoid|)) (|has| |#3| (|CoercibleTo| (|OutputForm|))) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Finite|)) (|has| |#3| (|Monoid|)) (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|OrderedSet|)) (|has| |#3| (|Ring|)) (|has| |#3| (|SetCategory|))) (((|Vector| |#3|)) . T)) 
(((|#3|) |has| |#3| (|Ring|))) 
((((|Symbol|)) AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|)))) 
((((|Symbol|)) OR (AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#3| (|Ring|))))) 
((($ (|Symbol|)) OR (AND (|has| |#3| (|PartialDifferentialRing| (|Symbol|))) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|PartialDifferentialSpace| (|Symbol|))) (|has| |#3| (|Ring|))))) 
(((|#3|) |has| |#3| (|Ring|))) 
(OR (AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|DifferentialSpace|)) (|has| |#3| (|Ring|)))) 
((($) OR (AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) (AND (|has| |#3| (|DifferentialSpace|)) (|has| |#3| (|Ring|))))) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
(|has| |#3| (|Ring|)) 
((((|Integer|)) OR (|has| |#3| (|AbelianGroup|)) (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|))) ((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Monoid|)) (|has| |#3| (|Ring|))) (($) |has| |#3| (|Ring|))) 
(AND (|has| |#3| (|DifferentialRing|)) (|has| |#3| (|Ring|))) 
(|has| |#3| (|Finite|)) 
(((|#3|) . T)) 
(((|#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
(((|#3| |#3|) AND (|has| |#3| (|Evalable| |#3|)) (|has| |#3| (|SetCategory|)))) 
(((|#3|) . T)) 
(((|#3|) . T)) 
(((|#3|) |has| |#3| (|Ring|))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Ring|))) (($) |has| |#3| (|Ring|)) (((|Integer|)) AND (|has| |#3| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#3| (|Ring|)))) 
(((|#3|) |has| |#3| (|Ring|)) (((|Integer|)) AND (|has| |#3| (|LinearlyExplicitRingOver| (|Integer|))) (|has| |#3| (|Ring|)))) 
(((|#3|) |has| |#3| (|SetCategory|))) 
((((|Integer|)) OR (AND (|has| |#3| (|RetractableTo| (|Integer|))) (|has| |#3| (|SetCategory|))) (|has| |#3| (|Ring|))) ((|#3|) |has| |#3| (|SetCategory|)) (((|Fraction| (|Integer|))) AND (|has| |#3| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#3| (|SetCategory|)))) 
(((|#3|) |has| |#3| (|SetCategory|)) (((|Integer|)) AND (|has| |#3| (|RetractableTo| (|Integer|))) (|has| |#3| (|SetCategory|))) (((|Fraction| (|Integer|))) AND (|has| |#3| (|RetractableTo| (|Fraction| (|Integer|)))) (|has| |#3| (|SetCategory|)))) 
((((|Integer|) |#3|) . T)) 
((((|Integer|) |#3|) . T)) 
((((|Integer|) |#3|) . T)) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)) (|has| |#3| (|Monoid|)))) 
(((|#3|) OR (|has| |#3| (|CommutativeRing|)) (|has| |#3| (|Field|)))) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(OR (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|OrderedSet|))) 
(OR (|has| |#3| (|OrderedAbelianMonoidSup|)) (|has| |#3| (|OrderedSet|))) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(|has| |#3| (|OrderedAbelianMonoidSup|)) 
(((|#3|) |has| |#3| (|Field|))) 
(((|#1| |#3|) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((($) . T)) 
((($) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((($) . T)) 
((((|Integer|)) . T) (($) . T)) 
((((|Integer|)) . T)) 
((($) . T) (((|Integer|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) . T) ((#1=(|Integer|)) . T) (((|Pattern| #1#)) . T) (((|Float|)) . T) (((|DoubleFloat|)) . T)) 
((((|Integer|)) . T)) 
((((|InputForm|)) AND (|has| |#1| (|ConvertibleTo| (|InputForm|))) (|has| |#2| (|ConvertibleTo| (|InputForm|)))) (((|Pattern| (|Float|))) AND (|has| |#1| (|ConvertibleTo| (|Pattern| (|Float|)))) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Float|))))) (((|Pattern| (|Integer|))) AND (|has| |#1| (|ConvertibleTo| (|Pattern| (|Integer|)))) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|)))))) 
((($) . T)) 
(((|#1| (|IndexedExponents| |#2|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|)))) 
(((|#1| (|IndexedExponents| |#2|)) . T)) 
(((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|)))) 
(OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
((($ $) . T) ((|#2| $) . T) ((|#2| |#1|) . T)) 
(((|#2|) . T)) 
((($ |#2|) . T)) 
(((|#2|) . T)) 
((((|Float|)) AND (|has| |#1| (|PatternMatchable| (|Float|))) (|has| |#2| (|PatternMatchable| (|Float|)))) (((|Integer|)) AND (|has| |#1| (|PatternMatchable| (|Integer|))) (|has| |#2| (|PatternMatchable| (|Integer|))))) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) ((|#1|) . T) ((|#2|) . T)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) ((|#1|) . T) (($) OR (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#2|) . T)) 
(((|#1| (|IndexedExponents| |#2|) |#2|) . T)) 
((($) . T)) 
((($ $) . T) ((|#2| $) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($ |#2|) . T)) 
(((|#2|) . T)) 
(((|#1| (|IndexedExponents| |#2|) |#2|) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
(((|#1| (|IndexedExponents| |#2|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|SplittingNode| |#1| |#2|)) . T)) 
((((|SplittingNode| |#1| |#2|)) . T)) 
((((|SplittingNode| |#1| |#2|)) . T)) 
((((|SplittingNode| |#1| |#2|)) . T)) 
(((#1=(|SplittingNode| |#1| |#2|) #1#) |has| (|SplittingNode| |#1| |#2|) (|Evalable| (|SplittingNode| |#1| |#2|)))) 
((((|SplittingNode| |#1| |#2|)) |has| (|SplittingNode| |#1| |#2|) (|Evalable| (|SplittingNode| |#1| |#2|)))) 
((((|OutputForm|)) . T)) 
((((|SplittingNode| |#1| |#2|)) . T)) 
((#1=((|InputForm|)) |has| |#2| (|ConvertibleTo| . #1#))) 
(((|#2|) |has| |#2| (ATTRIBUTE (|commutative| "*")))) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|Matrix| |#2|)) . T) (((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) ((|#2|) . T)) 
(((|#2|) OR (|has| |#2| (ATTRIBUTE (|commutative| "*"))) (|has| |#2| (|CommutativeRing|)))) 
(((|#2|) OR (|has| |#2| (ATTRIBUTE (|commutative| "*"))) (|has| |#2| (|CommutativeRing|)))) 
(((|#2|) . T)) 
((((|Symbol|)) |has| |#2| (|PartialDifferentialRing| (|Symbol|)))) 
((((|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
((($ (|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|))))) 
(((|#2|) . T)) 
(OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|))) 
((($) OR (|has| |#2| (|DifferentialRing|)) (|has| |#2| (|DifferentialSpace|)))) 
(|has| |#2| (|DifferentialRing|)) 
(((|#2|) . T)) 
((($) . T) ((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) 
(((|#2|) . T)) 
((((|Integer|)) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#2|) . T) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| |#1| |#2| #1=(|DirectProduct| |#1| |#2|) #1#) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#2|) . T)) 
(((|#1| |#2| #1=(|DirectProduct| |#1| |#2|) #1#) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#4|) . T)) 
((((|InputForm|)) |has| |#4| (|ConvertibleTo| (|InputForm|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
((((|OutputForm|)) . T) (((|List| |#4|)) . T)) 
(((|#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
(((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) . T)) 
((((|List| |#1|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
((((|Integer|) |#1|) . T)) 
((((|UniversalSegment| (|Integer|)) $) . T) (((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Integer|) (|Character|)) . T)) 
((((|Integer|) (|Character|)) . T)) 
((((|Integer|) (|Character|)) . T) (((|UniversalSegment| (|Integer|)) $) . T)) 
((((|Character|)) . T)) 
((((|Character|)) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|OutputForm|)) . T)) 
((((|String|) |#1|) . T)) 
((((|String|) |#1|) . T)) 
((((|String|) |#1|) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T) ((|#1|) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T) ((|#1|) . T)) 
(((#1=(|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)) #1#) |has| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)) (|Evalable| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)))) ((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) |has| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)) (|Evalable| (|Record| (|:| |key| (|String|)) (|:| |entry| |#1|)))) ((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|String|) |#1|) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
(((|#1|) . T) (((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|Record| (|:| |key| (|String|)) (|:| |entry| |#1|))) . T)) 
((((|String|) |#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) . T)) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|Evalable| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|))))) 
(((#1=(|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) #1#) AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|Evalable| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)))) (((|Symbol|) #1#) AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|InnerEvalable| (|Symbol|) (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|))))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialRing|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
((($) OR (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialRing|))) (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialSpace|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))))) 
(OR (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialRing|))) (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialSpace|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((($ (|Variable| |#2|)) . T) (($ (|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialSpace| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((((|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialSpace| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((((|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
(OR (|has| |#1| (|CharacteristicZero|)) (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|CharacteristicZero|)))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|CharacteristicNonZero|)))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) $) AND (|has| |#1| (|Field|)) (|has| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|Eltable| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)))) (($ $) . T) (((|Integer|) |#1|) . T)) 
(((|#1| (|Integer|) (|SingletonAsOrderedSet|)) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((#2=(|SparseUnivariateTaylorSeries| |#1| |#2| |#3|) #2#) |has| |#1| (|Field|)) ((|#1| |#1|) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) (((|Integer|)) . T) (($) . T) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) (($) . T) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Integer|)) . T) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T)) 
(((|#1| (|Integer|)) . T)) 
(((|#1| (|Integer|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| $) (|Fraction| $)) |has| |#1| (|IntegralDomain|)) (($ $) . T) ((|#1| |#1|) . T)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) 
(|has| |#1| (|Field|)) 
(((|#1| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
(|has| |#1| (|PolynomialFactorizationExplicit|)) 
((((|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (((|SingletonAsOrderedSet|)) . T)) 
((($ (|Symbol|)) OR (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) |has| |#1| (|PartialDifferentialRing| (|Symbol|))) (((|SingletonAsOrderedSet|)) . T)) 
((((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((((|Integer|)) . T) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) (((|SingletonAsOrderedSet|)) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|)))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|Integer|)) |has| |#1| (|LinearlyExplicitRingOver| (|Integer|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|Integer|)) . T) (($) . T) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|Field|)) (|has| |#1| (|GcdDomain|)) (|has| |#1| (|IntegralDomain|)) (|has| |#1| (|PolynomialFactorizationExplicit|))) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
((((|SingletonAsOrderedSet|)) . T) ((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((#1=(|SingletonAsOrderedSet|) |#1|) . T) ((#1# $) . T) (($ $) . T)) 
((($) . T)) 
(|has| |#1| (|StepThrough|)) 
(((|#1|) . T)) 
((((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (((|SparseUnivariateLaurentSeries| |#1| |#2| |#3|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|)))) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($ $) . T) (((|Fraction| (|Integer|)) |#1|) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((($ (|Variable| |#2|)) . T) (($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
(((|#1| (|Fraction| (|Integer|)) (|SingletonAsOrderedSet|)) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#1|) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
((((|Variable| |#2|)) . T) (((|SparseUnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (((|SparseUnivariateLaurentSeries| |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|Integer|)) . T) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(((|#1| (|SparseUnivariateLaurentSeries| |#1| |#2| |#3|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))))) 
((($ (|Variable| |#2|)) . T) (($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))))) 
((((|NonNegativeInteger|) |#1|) . T) (($ $) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|)))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (($) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))) 
(((|#1|) . T)) 
((((|Float|)) . T) (((|Integer|)) . T)) 
((((|Identifier|)) . T)) 
((((|Identifier|)) . T) (((|String|)) . T)) 
((((|Pattern| (|Float|))) . T) (((|Pattern| (|Integer|))) . T) (((|Symbol|)) . T) (((|InputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| (|Partition|)) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((((|OutputForm|)) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (($) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) (((|Integer|)) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1|) . T)) 
(((|#1|) . T) (((|Integer|)) |has| |#1| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#1| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#1| (|Partition|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Table| (|Symbol|) (|FortranType|))) . T) (((|OutputForm|)) . T)) 
((((|String|)) . T) (((|Identifier|)) . T) (((|DoubleFloat|)) . T) (((|Integer|)) . T)) 
((((|String|)) . T) (((|Identifier|)) . T) (((|DoubleFloat|)) . T) (((|Integer|)) . T)) 
((((|InputForm|)) . T) (((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|OutputForm|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T) ((|#2|) . T)) 
(((#1=(|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) #1#) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2| |#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) |has| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) (|Evalable| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) ((|#2|) AND (|has| |#2| (|Evalable| |#2|)) (|has| |#2| (|SetCategory|)))) 
(((|#1| |#2|) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#2|) . T) (((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
((((|Record| (|:| |key| |#1|) (|:| |entry| |#2|))) . T)) 
(((|#1| |#2|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|FileName|) (|String|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|SetCategory|)))) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
((($) . T)) 
((($ $) . T) (((|Symbol|) $) . T)) 
((((|Symbol|)) . T)) 
((((|OutputForm|)) . T)) 
((($ (|Symbol|)) . T)) 
((((|Symbol|)) . T)) 
(((|#1| (|IndexedExponents| #1=(|Symbol|)) #1#) . T)) 
((($) . T) (((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
((($) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
(((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
((((|Integer|)) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
((((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) ((|#1|) |has| |#1| (|CommutativeRing|)) (($) |has| |#1| (|IntegralDomain|))) 
(((|#1| (|IndexedExponents| (|Symbol|))) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|Symbol|)) . T)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
((((|PrimitiveArray| |#1|)) . T)) 
((#1=((|OutputForm|)) |has| |#1| (|CoercibleTo| . #1#)) (((|PrimitiveArray| |#1|)) . T)) 
((((|PrimitiveArray| |#1|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) . T)) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|Evalable| (|UnivariateTaylorSeries| |#1| |#2| |#3|))))) 
(((#1=(|UnivariateTaylorSeries| |#1| |#2| |#3|) #1#) AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|Evalable| (|UnivariateTaylorSeries| |#1| |#2| |#3|)))) (((|Symbol|) #1#) AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|InnerEvalable| (|Symbol|) (|UnivariateTaylorSeries| |#1| |#2| |#3|))))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialRing|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
((($) OR (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialRing|))) (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialSpace|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))))) 
(OR (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialRing|))) (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|DifferentialSpace|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
((($ (|Variable| |#2|)) . T) (($ (|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialSpace| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((((|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialSpace| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((((|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|))) 
(OR (|has| |#1| (|CharacteristicZero|)) (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|CharacteristicZero|)))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|CharacteristicNonZero|)))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|) $) AND (|has| |#1| (|Field|)) (|has| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|Eltable| (|UnivariateTaylorSeries| |#1| |#2| |#3|) (|UnivariateTaylorSeries| |#1| |#2| |#3|)))) (($ $) . T) (((|Integer|) |#1|) . T)) 
(((|#1| (|Integer|) (|SingletonAsOrderedSet|)) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((#2=(|UnivariateTaylorSeries| |#1| |#2| |#3|) #2#) |has| |#1| (|Field|)) ((|#1| |#1|) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) (((|Integer|)) . T) (($) . T) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) (($) . T) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Integer|)) . T) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) |has| |#1| (|Field|)) ((|#1|) . T)) 
(((|#1| (|Integer|)) . T)) 
(((|#1| (|Integer|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|UnivariateTaylorSeries| |#1| |#2| |#3|)) . T)) 
(((|#2|) |has| |#1| (|Field|))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|StepThrough|))) 
(((|#2|) . T) (((|Symbol|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|RetractableTo| (|Symbol|)))) (((|Integer|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|RetractableTo| (|Integer|)))) (((|Fraction| (|Integer|))) AND (|has| |#1| (|Field|)) (|has| |#2| (|RetractableTo| (|Integer|))))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|RealConstant|))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(((|#2|) |has| |#1| (|Field|))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) 
(OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedSet|)))) 
(OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedSet|)))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) 
(AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|))) 
((((|Float|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|PatternMatchable| (|Float|)))) (((|Integer|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|PatternMatchable| (|Integer|))))) 
(((|#2|) |has| |#1| (|Field|))) 
((((|Integer|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) ((|#2|) |has| |#1| (|Field|))) 
(((|#2|) |has| |#1| (|Field|))) 
(((|#2|) AND (|has| |#1| (|Field|)) (|has| |#2| (|Evalable| |#2|)))) 
(((|#2| |#2|) AND (|has| |#1| (|Field|)) (|has| |#2| (|Evalable| |#2|))) (((|Symbol|) |#2|) AND (|has| |#1| (|Field|)) (|has| |#2| (|InnerEvalable| (|Symbol|) |#2|)))) 
(((|#2|) |has| |#1| (|Field|))) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|DifferentialRing|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
((($) OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|DifferentialRing|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|DifferentialSpace|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|))))) 
(OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|DifferentialRing|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|DifferentialSpace|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))) 
(((|#2|) |has| |#1| (|Field|))) 
((($ (|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((((|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
((((|Symbol|)) OR (AND (|has| |#1| (|Field|)) (|has| |#2| (|PartialDifferentialRing| (|Symbol|)))) (AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Integer|) |#1|)))))) 
(((|#2|) |has| |#1| (|Field|))) 
((((|DoubleFloat|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|RealConstant|))) (((|Float|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|RealConstant|))) (((|Pattern| (|Float|))) AND (|has| |#1| (|Field|)) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Float|))))) (((|Pattern| (|Integer|))) AND (|has| |#1| (|Field|)) (|has| |#2| (|ConvertibleTo| (|Pattern| (|Integer|))))) (((|InputForm|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|ConvertibleTo| (|InputForm|))))) 
(OR (|has| |#1| (|CharacteristicZero|)) (AND (|has| |#1| (|Field|)) (|has| |#2| (|CharacteristicZero|))) (AND (|has| |#1| (|Field|)) (|has| |#2| (|OrderedIntegralDomain|)))) 
(OR (|has| |#1| (|CharacteristicNonZero|)) (AND (|has| |#1| (|Field|)) (|has| |#2| (|CharacteristicNonZero|)))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#2| $) AND (|has| |#1| (|Field|)) (|has| |#2| (|Eltable| |#2| |#2|))) (($ $) . T) (((|Integer|) |#1|) . T)) 
(((|#1| (|Integer|) (|SingletonAsOrderedSet|)) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#2|) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#2| |#2|) |has| |#1| (|Field|)) ((|#1| |#1|) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#2|) |has| |#1| (|Field|)) ((|#1|) . T)) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#2|) |has| |#1| (|Field|)) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#2|) |has| |#1| (|Field|)) (((|Integer|)) . T) (($) . T) ((|#1|) . T)) 
((((|Integer|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|LinearlyExplicitRingOver| (|Integer|)))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) ((|#2|) |has| |#1| (|Field|)) (($) . T) ((|#1|) . T)) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#2|) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
((((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((|#2|) |has| |#1| (|Field|)) ((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#2|) . T) (((|Symbol|)) AND (|has| |#1| (|Field|)) (|has| |#2| (|RetractableTo| (|Symbol|)))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Integer|)) . T) ((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#2|) |has| |#1| (|Field|)) ((|#1|) . T)) 
(((|#1| (|Integer|)) . T)) 
(((|#1| (|Integer|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| |#2|) . T)) 
(((|#1| (|Stream| |#1|)) |has| |#1| (|OrderedRing|))) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
(|has| |#1| (|SetCategory|)) 
((((|OutputForm|)) |has| |#1| (|SetCategory|))) 
(|has| |#1| (|SetCategory|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((((|Fraction| $) (|Fraction| $)) |has| |#2| (|IntegralDomain|)) (($ $) . T) ((|#2| |#2|) . T)) 
(|has| |#2| (|Field|)) 
(OR (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(OR (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) 
(|has| |#2| (|Field|)) 
(((|#2| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
(|has| |#2| (|PolynomialFactorizationExplicit|)) 
((((|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|)))) (((|SingletonAsOrderedSet|)) . T)) 
((($ (|Symbol|)) OR (|has| |#2| (|PartialDifferentialRing| (|Symbol|))) (|has| |#2| (|PartialDifferentialSpace| (|Symbol|)))) (($ (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) |has| |#2| (|PartialDifferentialRing| (|Symbol|))) (((|SingletonAsOrderedSet|)) . T)) 
((((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) ((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2| (|NonNegativeInteger|)) . T)) 
(((|#2|) . T)) 
(|has| |#2| (|CharacteristicZero|)) 
(|has| |#2| (|CharacteristicNonZero|)) 
((((|Variable| |#1|)) . T) (((|Integer|)) . T) (($) OR (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) (((|SingletonAsOrderedSet|)) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) OR (|has| |#2| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#2| (|RetractableTo| (|Fraction| (|Integer|)))))) 
((($) OR (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) (((|Integer|)) |has| |#2| (|LinearlyExplicitRingOver| (|Integer|))) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((((|Integer|)) . T) (($) . T) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) ((|#2|) . T) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#2| (|CommutativeRing|)) (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) ((|#2| |#2|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#2| (|Field|)) (|has| |#2| (|GcdDomain|)) (|has| |#2| (|IntegralDomain|)) (|has| |#2| (|PolynomialFactorizationExplicit|))) ((|#2|) |has| |#2| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#2| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#2|) . T)) 
((((|SingletonAsOrderedSet|)) . T) ((|#2|) . T) (((|Integer|)) |has| |#2| (|RetractableTo| (|Integer|))) (((|Fraction| (|Integer|))) |has| |#2| (|RetractableTo| (|Fraction| (|Integer|))))) 
(((|#2| (|NonNegativeInteger|)) . T)) 
(((#1=(|SingletonAsOrderedSet|) |#2|) . T) ((#1# $) . T) (($ $) . T)) 
((($) . T)) 
(|has| |#2| (|StepThrough|)) 
(((|#2|) . T)) 
((((|UnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (((|UnivariateLaurentSeries| |#1| |#2| |#3|)) . T)) 
(((|#1|) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|)))) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($ $) . T) (((|Fraction| (|Integer|)) |#1|) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((($ (|Variable| |#2|)) . T) (($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
(((|#1| (|Fraction| (|Integer|)) (|SingletonAsOrderedSet|)) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#1|) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
((((|Variable| |#2|)) . T) (((|UnivariateTaylorSeries| |#1| |#2| |#3|)) . T) (((|UnivariateLaurentSeries| |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|Integer|)) . T) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(((|#1| (|UnivariateLaurentSeries| |#1| |#2| |#3|)) . T)) 
(((|#2|) . T)) 
(((|#1|) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|)))) 
(|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))) 
((($ $) . T) (((|Fraction| (|Integer|)) |#1|) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|Fraction| (|Integer|)) |#1|))))) 
(((|#1| (|Fraction| (|Integer|)) (|SingletonAsOrderedSet|)) . T)) 
(|has| |#1| (|CharacteristicNonZero|)) 
(|has| |#1| (|CharacteristicZero|)) 
(((|#1|) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(((|#1| (|Fraction| (|Integer|))) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Field|)) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1|) . T) (($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1| |#1|) . T) (($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) ((#1=(|Fraction| (|Integer|)) #1#) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|)))) 
(((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) . T)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(((|#2|) . T) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) OR (|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (|has| |#1| (|Field|))) (((|Integer|)) . T) (($) OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|)))) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(OR (|has| |#1| (|Field|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(|has| |#1| (|Field|)) 
(((|#1| |#2|) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|) (|ExponentialOfUnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T)) 
(|has| (|UnivariatePuiseuxSeries| |#2| |#3| |#4|) (|CharacteristicZero|)) 
(|has| (|UnivariatePuiseuxSeries| |#2| |#3| |#4|) (|CharacteristicNonZero|)) 
((($) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) |has| #1# (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) |has| #1# (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
((((|OutputForm|)) . T)) 
((($) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
((($) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|) #1#) . T) ((#2=(|Fraction| (|Integer|)) #2#) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
(((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T) (($) . T)) 
(((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|)))) (($) . T)) 
((($) . T) (((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T) (((|Fraction| (|Integer|))) |has| (|UnivariatePuiseuxSeries| |#2| |#3| |#4|) (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T)) 
((($) . T) ((#1=(|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) |has| #1# (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| #1# (|Algebra| (|Fraction| (|Integer|))))) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T)) 
((((|UnivariatePuiseuxSeries| |#2| |#3| |#4|) (|ExponentialOfUnivariatePuiseuxSeries| |#2| |#3| |#4|)) . T)) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(|has| |#1| (|Algebra| (|Fraction| (|Integer|)))) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(((|#1| (|NonNegativeInteger|)) . T)) 
(|has| |#1| (|IntegralDomain|)) 
(|has| |#1| (|IntegralDomain|)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) 
(|has| |#1| (|CharacteristicZero|)) 
(|has| |#1| (|CharacteristicNonZero|)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($ $) OR (|has| |#1| (|CommutativeRing|)) (|has| |#1| (|IntegralDomain|))) ((|#1| |#1|) . T) ((#1=(|Fraction| (|Integer|)) #1#) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|))))) 
(((|#1| (|NonNegativeInteger|) (|SingletonAsOrderedSet|)) . T)) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))))) 
((($ (|Variable| |#2|)) . T) (($ (|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))))) 
((((|Symbol|)) AND (|has| |#1| (|PartialDifferentialRing| (|Symbol|))) (|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))))) 
((((|NonNegativeInteger|) |#1|) . T) (($ $) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))) 
((($) |has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|)))) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T) (($) . T)) 
(((|#1|) . T) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (($) . T)) 
((($) |has| |#1| (|IntegralDomain|)) ((|#1|) |has| |#1| (|CommutativeRing|)) (((|Fraction| (|Integer|))) |has| |#1| (|Algebra| (|Fraction| (|Integer|)))) (((|Integer|)) . T)) 
(|has| |#1| (SIGNATURE * (|#1| (|NonNegativeInteger|) |#1|))) 
(((|#1|) . T)) 
((((|Symbol|)) . T) (((|OutputForm|)) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(OR (|has| |#1| (|BasicType|)) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
((((|OutputForm|)) OR (|has| |#1| (|CoercibleTo| (|OutputForm|))) (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1| |#1|) AND (|has| |#1| (|Evalable| |#1|)) (|has| |#1| (|SetCategory|)))) 
(((|#1|) . T)) 
(OR (|has| |#1| (|OrderedSet|)) (|has| |#1| (|SetCategory|))) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T)) 
((((|Integer|) |#1|) . T) (((|UniversalSegment| (|Integer|)) $) . T)) 
((((|InputForm|)) |has| |#1| (|ConvertibleTo| (|InputForm|)))) 
(((|#1|) . T)) 
(|has| |#1| (|OrderedSet|)) 
(|has| |#1| (|OrderedSet|)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|OutputForm|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
((((|OutputForm|)) . T) (((|Syntax|)) . T)) 
((((|Syntax|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#4|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) ((|#4|) . T) (((|Integer|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T)) 
(((|#4|) . T) (((|OutputForm|)) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|)) (($) . T) (((|Integer|)) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#4|) . T)) 
((((|InputForm|)) |has| |#4| (|ConvertibleTo| (|InputForm|)))) 
(((|#4|) . T)) 
(((|#4|) . T)) 
(((|#4| |#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) AND (|has| |#4| (|Evalable| |#4|)) (|has| |#4| (|SetCategory|)))) 
(((|#4|) . T)) 
((((|OutputForm|)) . T) (((|List| |#4|)) . T)) 
(((|#4|) . T)) 
(((|#1| |#2| |#3| |#4|) . T)) 
(((|#1| |#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
((((|OutputForm|)) . T)) 
((($) . T) (((|Integer|)) . T) ((|#2|) . T)) 
((($) . T) ((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
((((|OrderedFreeMonoid| |#1|)) . T)) 
(((|#2|) . T) (((|Integer|)) . T) (((|OrderedFreeMonoid| |#1|)) . T)) 
(((|#2| (|OrderedFreeMonoid| |#1|)) . T)) 
(((|#2| (|PoincareBirkhoffWittLyndonBasis| |#1|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) . T)) 
(((|#2|) . T) (($) . T)) 
((((|XRecursivePolynomial| |#1| |#2|)) . T) (((|XDistributedPolynomial| |#1| |#2|)) . T) (((|OutputForm|)) . T)) 
(((|#2|) . T) (($) . T) (((|Integer|)) . T)) 
((((|PoincareBirkhoffWittLyndonBasis| |#1|)) . T) ((|#2|) . T) (((|Integer|)) . T) (((|OrderedFreeMonoid| |#1|)) . T)) 
((((|PoincareBirkhoffWittLyndonBasis| |#1|)) . T) (((|OrderedFreeMonoid| |#1|)) . T)) 
(((|#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Symbol|) |#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
(((|#1|) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) . T) (((|Integer|)) . T)) 
(((|#1|) . T) (((|Integer|)) . T) (((|OrderedFreeMonoid| (|Symbol|))) . T)) 
((((|OrderedFreeMonoid| (|Symbol|))) . T)) 
(((|#1|) . T)) 
((((|Symbol|) |#1|) . T)) 
(((|#1|) . T)) 
(((|#2|) . T)) 
(((|#1| |#2|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1| |#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) . T)) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) |has| |#1| (|CommutativeRing|))) 
(((|#1|) . T)) 
(((|#2|) . T) ((|#1|) . T) (((|Integer|)) . T)) 
(((|#1|) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#1|) . T) (($) . T) (((|Integer|)) . T)) 
(((|#1| |#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2| |#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) . T)) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) |has| |#2| (|CommutativeRing|))) 
(((|#2|) . T)) 
(((|#2|) . T) (($) . T)) 
((((|OutputForm|)) . T)) 
(((|#2|) . T) (($) . T) (((|Integer|)) . T)) 
(((|#2|) . T) (((|Integer|)) . T) (((|OrderedFreeMonoid| |#1|)) . T)) 
((((|OrderedFreeMonoid| |#1|)) . T)) 
(((|#2|) . T)) 
(((|#1| |#2|) . T)) 
((((|Partition|)) . T)) 
((((|Partition|)) . T)) 
((((|Partition|)) . T) (((|OutputForm|)) . T)) 
((((|Integer|)) . T)) 
((($ $) . T)) 
((($) . T)) 
((($) . T)) 
((((|OutputForm|)) . T)) 
((((|Integer|)) . T) (($) . T)) 
((($) . T)) 
((((|Integer|)) . T)) 
(((|IntegerMod| . |CommutativeRing|) T) ((|IntegerMod| . |CoercibleFrom|) 283961) ((|IntegerMod| . |Rng|) T) ((|IntegerMod| . |SemiGroup|) T) ((|IntegerMod| . |SemiRing|) T) ((|IntegerMod| . |Monoid|) T) ((|IntegerMod| . |Ring|) T) ((|IntegerMod| . |LeftModule|) 283948) ((|IntegerMod| . |LeftLinearSet|) 283915) ((|IntegerMod| . |CancellationAbelianMonoid|) T) ((|IntegerMod| . |AbelianSemiGroup|) T) ((|IntegerMod| . |BasicType|) T) ((|IntegerMod| . |Join|) T) ((|IntegerMod| . |Type|) T) ((|IntegerMod| . |CoercibleTo|) 283889) ((|IntegerMod| . |SetCategory|) T) ((|IntegerMod| . |AbelianMonoid|) T) ((|IntegerMod| . |AbelianGroup|) T) ((|IntegerMod| . |RightModule|) 283876) ((|IntegerMod| . |RightLinearSet|) 283863) ((|IntegerMod| . |BiModule|) 283848) ((|IntegerMod| . |Finite|) T) ((|IntegerMod| . |ConvertibleTo|) 283825) ((|IntegerMod| . |StepThrough|) T) ((|YoungDiagram| . |SetCategory|) T) ((|YoungDiagram| . |CoercibleTo|) 283777) ((|YoungDiagram| . |Type|) T) ((|YoungDiagram| . |Join|) T) ((|YoungDiagram| . |BasicType|) T) ((|YoungDiagram| . |HomotopicTo|) 283752) ((|YoungDiagram| . |CoercibleFrom|) 283727) ((|XRecursivePolynomial| . |XPolynomialsCat|) 283706) ((|XRecursivePolynomial| . |Functorial|) 283690) ((|XRecursivePolynomial| . |Join|) T) ((|XRecursivePolynomial| . |Type|) T) ((|XRecursivePolynomial| . |RetractableTo|) 283652) ((|XRecursivePolynomial| . |CoercibleFrom|) 283581) ((|XRecursivePolynomial| . |Ring|) T) ((|XRecursivePolynomial| . |Monoid|) T) ((|XRecursivePolynomial| . |SemiRing|) T) ((|XRecursivePolynomial| . |SemiGroup|) T) ((|XRecursivePolynomial| . |Rng|) T) ((|XRecursivePolynomial| . |AbelianGroup|) T) ((|XRecursivePolynomial| . |LeftLinearSet|) 283535) ((|XRecursivePolynomial| . |AbelianMonoid|) T) ((|XRecursivePolynomial| . |SetCategory|) T) ((|XRecursivePolynomial| . |CoercibleTo|) 283509) ((|XRecursivePolynomial| . |BasicType|) T) ((|XRecursivePolynomial| . |AbelianSemiGroup|) T) ((|XRecursivePolynomial| . |CancellationAbelianMonoid|) T) ((|XRecursivePolynomial| . |LeftModule|) 283483) ((|XRecursivePolynomial| . |XAlgebra|) 283467) ((|XRecursivePolynomial| . |Module|) 283424) ((|XRecursivePolynomial| . |LinearSet|) 283381) ((|XRecursivePolynomial| . |RightModule|) 283365) ((|XRecursivePolynomial| . |RightLinearSet|) 283349) ((|XRecursivePolynomial| . |BiModule|) 283328) ((|XRecursivePolynomial| . |Algebra|) 283285) ((|XRecursivePolynomial| . |XFreeAlgebra|) 283264) ((|XPolynomialRing| . |Ring|) T) ((|XPolynomialRing| . |Monoid|) T) ((|XPolynomialRing| . |SemiRing|) T) ((|XPolynomialRing| . |SemiGroup|) T) ((|XPolynomialRing| . |Rng|) T) ((|XPolynomialRing| . |AbelianGroup|) T) ((|XPolynomialRing| . |LeftLinearSet|) 283218) ((|XPolynomialRing| . |AbelianMonoid|) T) ((|XPolynomialRing| . |SetCategory|) T) ((|XPolynomialRing| . |CoercibleTo|) 283192) ((|XPolynomialRing| . |Type|) T) ((|XPolynomialRing| . |Join|) T) ((|XPolynomialRing| . |BasicType|) T) ((|XPolynomialRing| . |AbelianSemiGroup|) T) ((|XPolynomialRing| . |CancellationAbelianMonoid|) T) ((|XPolynomialRing| . |LeftModule|) 283166) ((|XPolynomialRing| . |CoercibleFrom|) 283117) ((|XPolynomialRing| . |XAlgebra|) 283101) ((|XPolynomialRing| . |Module|) 283058) ((|XPolynomialRing| . |LinearSet|) 283015) ((|XPolynomialRing| . |RightModule|) 282999) ((|XPolynomialRing| . |RightLinearSet|) 282983) ((|XPolynomialRing| . |BiModule|) 282962) ((|XPolynomialRing| . |Algebra|) 282919) ((|XPolynomialRing| . |FreeModuleCat|) 282898) ((|XPolynomialRing| . |RetractableTo|) 282882) ((|XPolynomialRing| . |Functorial|) 282866) ((|XPolynomial| . |XPolynomialsCat|) 282839) ((|XPolynomial| . |Functorial|) 282823) ((|XPolynomial| . |Join|) T) ((|XPolynomial| . |Type|) T) ((|XPolynomial| . |RetractableTo|) 282779) ((|XPolynomial| . |CoercibleFrom|) 282702) ((|XPolynomial| . |Ring|) T) ((|XPolynomial| . |Monoid|) T) ((|XPolynomial| . |SemiRing|) T) ((|XPolynomial| . |SemiGroup|) T) ((|XPolynomial| . |Rng|) T) ((|XPolynomial| . |AbelianGroup|) T) ((|XPolynomial| . |LeftLinearSet|) 282656) ((|XPolynomial| . |AbelianMonoid|) T) ((|XPolynomial| . |SetCategory|) T) ((|XPolynomial| . |CoercibleTo|) 282630) ((|XPolynomial| . |BasicType|) T) ((|XPolynomial| . |AbelianSemiGroup|) T) ((|XPolynomial| . |CancellationAbelianMonoid|) T) ((|XPolynomial| . |LeftModule|) 282604) ((|XPolynomial| . |XAlgebra|) 282588) ((|XPolynomial| . |Module|) 282545) ((|XPolynomial| . |LinearSet|) 282502) ((|XPolynomial| . |RightModule|) 282486) ((|XPolynomial| . |RightLinearSet|) 282470) ((|XPolynomial| . |BiModule|) 282449) ((|XPolynomial| . |Algebra|) 282406) ((|XPolynomial| . |XFreeAlgebra|) 282379) ((|XPBWPolynomial| . |XPolynomialsCat|) 282358) ((|XPBWPolynomial| . |Functorial|) 282342) ((|XPBWPolynomial| . |Join|) T) ((|XPBWPolynomial| . |Type|) T) ((|XPBWPolynomial| . |RetractableTo|) 282255) ((|XPBWPolynomial| . |CoercibleFrom|) 282135) ((|XPBWPolynomial| . |Ring|) T) ((|XPBWPolynomial| . |Monoid|) T) ((|XPBWPolynomial| . |SemiRing|) T) ((|XPBWPolynomial| . |SemiGroup|) T) ((|XPBWPolynomial| . |Rng|) T) ((|XPBWPolynomial| . |AbelianGroup|) T) ((|XPBWPolynomial| . |LeftLinearSet|) 282089) ((|XPBWPolynomial| . |AbelianMonoid|) T) ((|XPBWPolynomial| . |SetCategory|) T) ((|XPBWPolynomial| . |CoercibleTo|) 281975) ((|XPBWPolynomial| . |BasicType|) T) ((|XPBWPolynomial| . |AbelianSemiGroup|) T) ((|XPBWPolynomial| . |CancellationAbelianMonoid|) T) ((|XPBWPolynomial| . |LeftModule|) 281949) ((|XPBWPolynomial| . |XAlgebra|) 281933) ((|XPBWPolynomial| . |Module|) 281890) ((|XPBWPolynomial| . |LinearSet|) 281847) ((|XPBWPolynomial| . |RightModule|) 281831) ((|XPBWPolynomial| . |RightLinearSet|) 281815) ((|XPBWPolynomial| . |BiModule|) 281794) ((|XPBWPolynomial| . |Algebra|) 281751) ((|XPBWPolynomial| . |XFreeAlgebra|) 281730) ((|XPBWPolynomial| . |FreeModuleCat|) 281673) ((|XDistributedPolynomial| . |FreeModuleCat|) 281630) ((|XDistributedPolynomial| . |CoercibleFrom|) 281559) ((|XDistributedPolynomial| . |RetractableTo|) 281521) ((|XDistributedPolynomial| . |LinearSet|) 281478) ((|XDistributedPolynomial| . |Module|) 281435) ((|XDistributedPolynomial| . |Functorial|) 281419) ((|XDistributedPolynomial| . |LeftModule|) 281393) ((|XDistributedPolynomial| . |LeftLinearSet|) 281347) ((|XDistributedPolynomial| . |CancellationAbelianMonoid|) T) ((|XDistributedPolynomial| . |AbelianSemiGroup|) T) ((|XDistributedPolynomial| . |BasicType|) T) ((|XDistributedPolynomial| . |Join|) T) ((|XDistributedPolynomial| . |Type|) T) ((|XDistributedPolynomial| . |CoercibleTo|) 281321) ((|XDistributedPolynomial| . |SetCategory|) T) ((|XDistributedPolynomial| . |AbelianMonoid|) T) ((|XDistributedPolynomial| . |AbelianGroup|) T) ((|XDistributedPolynomial| . |RightModule|) 281305) ((|XDistributedPolynomial| . |RightLinearSet|) 281289) ((|XDistributedPolynomial| . |BiModule|) 281268) ((|XDistributedPolynomial| . |XPolynomialsCat|) 281247) ((|XDistributedPolynomial| . |Ring|) T) ((|XDistributedPolynomial| . |Monoid|) T) ((|XDistributedPolynomial| . |SemiRing|) T) ((|XDistributedPolynomial| . |SemiGroup|) T) ((|XDistributedPolynomial| . |Rng|) T) ((|XDistributedPolynomial| . |XAlgebra|) 281231) ((|XDistributedPolynomial| . |Algebra|) 281188) ((|XDistributedPolynomial| . |XFreeAlgebra|) 281167) ((|WuWenTsunTriangularSet| . |TriangularSetCategory|) 281136) ((|WuWenTsunTriangularSet| . |ShallowlyMutableAggregate|) 281120) ((|WuWenTsunTriangularSet| . |CoercibleTo|) 281072) ((|WuWenTsunTriangularSet| . |Collection|) 281056) ((|WuWenTsunTriangularSet| . |Aggregate|) T) ((|WuWenTsunTriangularSet| . |Join|) T) ((|WuWenTsunTriangularSet| . |Type|) T) ((|WuWenTsunTriangularSet| . |BasicType|) T) ((|WuWenTsunTriangularSet| . |Evalable|) 280980) ((|WuWenTsunTriangularSet| . |InnerEvalable|) 280899) ((|WuWenTsunTriangularSet| . |Functorial|) 280883) ((|WuWenTsunTriangularSet| . |SetCategory|) T) ((|WuWenTsunTriangularSet| . |HomogeneousAggregate|) 280867) ((|WuWenTsunTriangularSet| . |ConvertibleTo|) 280803) ((|WuWenTsunTriangularSet| . |FiniteAggregate|) 280787) ((|WuWenTsunTriangularSet| . |PolynomialSetCategory|) 280756) ((|WeightedPolynomials| . |Ring|) T) ((|WeightedPolynomials| . |Monoid|) T) ((|WeightedPolynomials| . |SemiRing|) T) ((|WeightedPolynomials| . |SemiGroup|) T) ((|WeightedPolynomials| . |Rng|) T) ((|WeightedPolynomials| . |AbelianGroup|) T) ((|WeightedPolynomials| . |LeftLinearSet|) 280683) ((|WeightedPolynomials| . |AbelianMonoid|) T) ((|WeightedPolynomials| . |SetCategory|) T) ((|WeightedPolynomials| . |CoercibleTo|) 280644) ((|WeightedPolynomials| . |Type|) T) ((|WeightedPolynomials| . |Join|) T) ((|WeightedPolynomials| . |BasicType|) T) ((|WeightedPolynomials| . |AbelianSemiGroup|) T) ((|WeightedPolynomials| . |CancellationAbelianMonoid|) T) ((|WeightedPolynomials| . |LeftModule|) 280591) ((|WeightedPolynomials| . |CoercibleFrom|) 280515) ((|WeightedPolynomials| . |HomotopicTo|) 280499) ((|WeightedPolynomials| . |Algebra|) 280456) ((|WeightedPolynomials| . |BiModule|) 280408) ((|WeightedPolynomials| . |RightLinearSet|) 280365) ((|WeightedPolynomials| . |RightModule|) 280322) ((|WeightedPolynomials| . |LinearSet|) 280279) ((|WeightedPolynomials| . |Module|) 280236) ((|WhileAst| . |SpadSyntaxCategory|) T) ((|WhileAst| . |HomotopicTo|) 280214) ((|WhileAst| . |CoercibleTo|) 280169) ((|WhileAst| . |CoercibleFrom|) 280147) ((|WhileAst| . |SetCategory|) T) ((|WhileAst| . |Type|) T) ((|WhileAst| . |Join|) T) ((|WhileAst| . |BasicType|) T) ((|WhileAst| . |AbstractSyntaxCategory|) T) ((|WhereAst| . |SpadSyntaxCategory|) T) ((|WhereAst| . |HomotopicTo|) 280125) ((|WhereAst| . |CoercibleTo|) 280080) ((|WhereAst| . |CoercibleFrom|) 280058) ((|WhereAst| . |SetCategory|) T) ((|WhereAst| . |Type|) T) ((|WhereAst| . |Join|) T) ((|WhereAst| . |BasicType|) T) ((|WhereAst| . |AbstractSyntaxCategory|) T) ((|Void| . |CoercibleTo|) 280032) ((|ThreeDimensionalViewport| . |SetCategory|) T) ((|ThreeDimensionalViewport| . |CoercibleTo|) 280006) ((|ThreeDimensionalViewport| . |Type|) T) ((|ThreeDimensionalViewport| . |Join|) T) ((|ThreeDimensionalViewport| . |BasicType|) T) ((|TwoDimensionalViewport| . |SetCategory|) T) ((|TwoDimensionalViewport| . |CoercibleTo|) 279980) ((|TwoDimensionalViewport| . |Type|) T) ((|TwoDimensionalViewport| . |Join|) T) ((|TwoDimensionalViewport| . |BasicType|) T) ((|Vector| . |VectorCategory|) 279964) ((|Vector| . |FiniteLinearAggregate|) 279948) ((|Vector| . |OrderedType|) 279919) ((|Vector| . |OrderedSet|) 279890) ((|Vector| . |Collection|) 279874) ((|Vector| . |ConvertibleTo|) 279810) ((|Vector| . |Eltable|) 279739) ((|Vector| . |IndexedAggregate|) 279711) ((|Vector| . |EltableAggregate|) 279683) ((|Vector| . |LinearAggregate|) 279667) ((|Vector| . |HomogeneousAggregate|) 279651) ((|Vector| . |SetCategory|) 279588) ((|Vector| . |Functorial|) 279572) ((|Vector| . |InnerEvalable|) 279491) ((|Vector| . |Evalable|) 279415) ((|Vector| . |CoercibleTo|) 279289) ((|Vector| . |BasicType|) 279199) ((|Vector| . |Type|) T) ((|Vector| . |Join|) T) ((|Vector| . |Aggregate|) T) ((|Vector| . |FiniteAggregate|) 279183) ((|Vector| . |ShallowlyMutableAggregate|) 279167) ((|Vector| . |OneDimensionalArrayAggregate|) 279151) ((|Variable| . |SetCategory|) T) ((|Variable| . |CoercibleTo|) 279106) ((|Variable| . |Type|) T) ((|Variable| . |Join|) T) ((|Variable| . |BasicType|) T) ((|UnivariateTaylorSeries| . |UnivariateTaylorSeriesCategory|) 279090) ((|UnivariateTaylorSeries| . |DifferentialRing|) 279027) ((|UnivariateTaylorSeries| . |CoercibleFrom|) 278851) ((|UnivariateTaylorSeries| . |LeftModule|) 278748) ((|UnivariateTaylorSeries| . |LeftLinearSet|) 278625) ((|UnivariateTaylorSeries| . |CancellationAbelianMonoid|) T) ((|UnivariateTaylorSeries| . |AbelianSemiGroup|) T) ((|UnivariateTaylorSeries| . |BasicType|) T) ((|UnivariateTaylorSeries| . |CoercibleTo|) 278599) ((|UnivariateTaylorSeries| . |SetCategory|) T) ((|UnivariateTaylorSeries| . |AbelianMonoid|) T) ((|UnivariateTaylorSeries| . |AbelianGroup|) T) ((|UnivariateTaylorSeries| . |Rng|) T) ((|UnivariateTaylorSeries| . |SemiGroup|) T) ((|UnivariateTaylorSeries| . |SemiRing|) T) ((|UnivariateTaylorSeries| . |Monoid|) T) ((|UnivariateTaylorSeries| . |Ring|) T) ((|UnivariateTaylorSeries| . |DifferentialDomain|) 278530) ((|UnivariateTaylorSeries| . |Join|) T) ((|UnivariateTaylorSeries| . |Type|) T) ((|UnivariateTaylorSeries| . |DifferentialSpace|) 278467) ((|UnivariateTaylorSeries| . |Eltable|) 278416) ((|UnivariateTaylorSeries| . |PartialDifferentialRing|) 278280) ((|UnivariateTaylorSeries| . |PartialDifferentialDomain|) 278114) ((|UnivariateTaylorSeries| . |PartialDifferentialSpace|) 277978) ((|UnivariateTaylorSeries| . |PowerSeriesCategory|) 277913) ((|UnivariateTaylorSeries| . |Algebra|) 277757) ((|UnivariateTaylorSeries| . |BiModule|) 277576) ((|UnivariateTaylorSeries| . |RightLinearSet|) 277409) ((|UnivariateTaylorSeries| . |RightModule|) 277242) ((|UnivariateTaylorSeries| . |LinearSet|) 277086) ((|UnivariateTaylorSeries| . |Module|) 276930) ((|UnivariateTaylorSeries| . |CharacteristicNonZero|) 276890) ((|UnivariateTaylorSeries| . |CharacteristicZero|) 276853) ((|UnivariateTaylorSeries| . |CommutativeRing|) 276782) ((|UnivariateTaylorSeries| . |Functorial|) 276766) ((|UnivariateTaylorSeries| . |IntegralDomain|) 276733) ((|UnivariateTaylorSeries| . |EntireRing|) 276700) ((|UnivariateTaylorSeries| . |AbelianMonoidRing|) 276661) ((|UnivariateTaylorSeries| . |UnivariatePowerSeriesCategory|) 276622) ((|UnivariateTaylorSeries| . |ArcHyperbolicFunctionCategory|) 276571) ((|UnivariateTaylorSeries| . |ArcTrigonometricFunctionCategory|) 276520) ((|UnivariateTaylorSeries| . |ElementaryFunctionCategory|) 276469) ((|UnivariateTaylorSeries| . |HyperbolicFunctionCategory|) 276418) ((|UnivariateTaylorSeries| . |TrigonometricFunctionCategory|) 276367) ((|UnivariateTaylorSeries| . |TranscendentalFunctionCategory|) 276316) ((|UnivariateTaylorSeries| . |RadicalCategory|) 276265) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |FiniteAbelianMonoidRing|) 276155) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |RetractableTo|) 276101) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |FullyRetractableTo|) 276047) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Algebra|) 275878) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CoercibleFrom|) 275679) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |LeftModule|) 275536) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |LeftLinearSet|) 275373) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Rng|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |SemiGroup|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |SemiRing|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Monoid|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Ring|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |BiModule|) 275217) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |RightLinearSet|) 275074) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |RightModule|) 274931) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |AbelianGroup|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |AbelianMonoid|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |SetCategory|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CoercibleTo|) 274905) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Type|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Join|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |BasicType|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |AbelianSemiGroup|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CancellationAbelianMonoid|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |LinearSet|) 274736) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Module|) 274567) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CharacteristicNonZero|) 274489) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CharacteristicZero|) 274414) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |CommutativeRing|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |Functorial|) 274360) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |IntegralDomain|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |EntireRing|) T) ((|UnivariatePuiseuxSeriesWithExponentialSingularity| . |AbelianMonoidRing|) 274250) ((|UnivariatePuiseuxSeriesConstructor| . |UnivariatePuiseuxSeriesConstructorCategory|) 274229) ((|UnivariatePuiseuxSeriesConstructor| . |Field|) 274205) ((|UnivariatePuiseuxSeriesConstructor| . |UniqueFactorizationDomain|) 274181) ((|UnivariatePuiseuxSeriesConstructor| . |PrincipalIdealDomain|) 274157) ((|UnivariatePuiseuxSeriesConstructor| . |IntegralDomain|) 274096) ((|UnivariatePuiseuxSeriesConstructor| . |CommutativeRing|) 274002) ((|UnivariatePuiseuxSeriesConstructor| . |CoercibleFrom|) 273757) ((|UnivariatePuiseuxSeriesConstructor| . |Module|) 273545) ((|UnivariatePuiseuxSeriesConstructor| . |LinearSet|) 273333) ((|UnivariatePuiseuxSeriesConstructor| . |Algebra|) 273121) ((|UnivariatePuiseuxSeriesConstructor| . |GcdDomain|) 273097) ((|UnivariatePuiseuxSeriesConstructor| . |EuclideanDomain|) 273073) ((|UnivariatePuiseuxSeriesConstructor| . |LeftModule|) 272942) ((|UnivariatePuiseuxSeriesConstructor| . |LeftLinearSet|) 272791) ((|UnivariatePuiseuxSeriesConstructor| . |Rng|) T) ((|UnivariatePuiseuxSeriesConstructor| . |SemiGroup|) T) ((|UnivariatePuiseuxSeriesConstructor| . |SemiRing|) T) ((|UnivariatePuiseuxSeriesConstructor| . |Monoid|) T) ((|UnivariatePuiseuxSeriesConstructor| . |Ring|) T) ((|UnivariatePuiseuxSeriesConstructor| . |BiModule|) 272559) ((|UnivariatePuiseuxSeriesConstructor| . |RightLinearSet|) 272341) ((|UnivariatePuiseuxSeriesConstructor| . |RightModule|) 272123) ((|UnivariatePuiseuxSeriesConstructor| . |AbelianGroup|) T) ((|UnivariatePuiseuxSeriesConstructor| . |AbelianMonoid|) T) ((|UnivariatePuiseuxSeriesConstructor| . |SetCategory|) T) ((|UnivariatePuiseuxSeriesConstructor| . |CoercibleTo|) 272097) ((|UnivariatePuiseuxSeriesConstructor| . |Type|) T) ((|UnivariatePuiseuxSeriesConstructor| . |Join|) T) ((|UnivariatePuiseuxSeriesConstructor| . |BasicType|) T) ((|UnivariatePuiseuxSeriesConstructor| . |AbelianSemiGroup|) T) ((|UnivariatePuiseuxSeriesConstructor| . |CancellationAbelianMonoid|) T) ((|UnivariatePuiseuxSeriesConstructor| . |EntireRing|) 272036) ((|UnivariatePuiseuxSeriesConstructor| . |DivisionRing|) 272012) ((|UnivariatePuiseuxSeriesConstructor| . |RadicalCategory|) 271961) ((|UnivariatePuiseuxSeriesConstructor| . |TranscendentalFunctionCategory|) 271910) ((|UnivariatePuiseuxSeriesConstructor| . |TrigonometricFunctionCategory|) 271859) ((|UnivariatePuiseuxSeriesConstructor| . |HyperbolicFunctionCategory|) 271808) ((|UnivariatePuiseuxSeriesConstructor| . |ElementaryFunctionCategory|) 271757) ((|UnivariatePuiseuxSeriesConstructor| . |ArcTrigonometricFunctionCategory|) 271706) ((|UnivariatePuiseuxSeriesConstructor| . |ArcHyperbolicFunctionCategory|) 271655) ((|UnivariatePuiseuxSeriesConstructor| . |UnivariatePowerSeriesCategory|) 271614) ((|UnivariatePuiseuxSeriesConstructor| . |AbelianMonoidRing|) 271573) ((|UnivariatePuiseuxSeriesConstructor| . |Functorial|) 271557) ((|UnivariatePuiseuxSeriesConstructor| . |CharacteristicZero|) 271520) ((|UnivariatePuiseuxSeriesConstructor| . |CharacteristicNonZero|) 271480) ((|UnivariatePuiseuxSeriesConstructor| . |PowerSeriesCategory|) 271413) ((|UnivariatePuiseuxSeriesConstructor| . |PartialDifferentialSpace|) 271275) ((|UnivariatePuiseuxSeriesConstructor| . |PartialDifferentialDomain|) 271135) ((|UnivariatePuiseuxSeriesConstructor| . |PartialDifferentialRing|) 270997) ((|UnivariatePuiseuxSeriesConstructor| . |Eltable|) 270944) ((|UnivariatePuiseuxSeriesConstructor| . |DifferentialSpace|) 270879) ((|UnivariatePuiseuxSeriesConstructor| . |DifferentialDomain|) 270808) ((|UnivariatePuiseuxSeriesConstructor| . |DifferentialRing|) 270743) ((|UnivariatePuiseuxSeriesConstructor| . |UnivariatePuiseuxSeriesCategory|) 270727) ((|UnivariatePuiseuxSeriesConstructor| . |RetractableTo|) 270711) ((|UnivariatePuiseuxSeries| . |UnivariatePuiseuxSeriesConstructorCategory|) 270652) ((|UnivariatePuiseuxSeries| . |Field|) 270628) ((|UnivariatePuiseuxSeries| . |UniqueFactorizationDomain|) 270604) ((|UnivariatePuiseuxSeries| . |PrincipalIdealDomain|) 270580) ((|UnivariatePuiseuxSeries| . |IntegralDomain|) 270519) ((|UnivariatePuiseuxSeries| . |CommutativeRing|) 270425) ((|UnivariatePuiseuxSeries| . |CoercibleFrom|) 270066) ((|UnivariatePuiseuxSeries| . |Module|) 269854) ((|UnivariatePuiseuxSeries| . |LinearSet|) 269642) ((|UnivariatePuiseuxSeries| . |Algebra|) 269430) ((|UnivariatePuiseuxSeries| . |GcdDomain|) 269406) ((|UnivariatePuiseuxSeries| . |EuclideanDomain|) 269382) ((|UnivariatePuiseuxSeries| . |LeftModule|) 269251) ((|UnivariatePuiseuxSeries| . |LeftLinearSet|) 269100) ((|UnivariatePuiseuxSeries| . |Rng|) T) ((|UnivariatePuiseuxSeries| . |SemiGroup|) T) ((|UnivariatePuiseuxSeries| . |SemiRing|) T) ((|UnivariatePuiseuxSeries| . |Monoid|) T) ((|UnivariatePuiseuxSeries| . |Ring|) T) ((|UnivariatePuiseuxSeries| . |BiModule|) 268868) ((|UnivariatePuiseuxSeries| . |RightLinearSet|) 268650) ((|UnivariatePuiseuxSeries| . |RightModule|) 268432) ((|UnivariatePuiseuxSeries| . |AbelianGroup|) T) ((|UnivariatePuiseuxSeries| . |AbelianMonoid|) T) ((|UnivariatePuiseuxSeries| . |SetCategory|) T) ((|UnivariatePuiseuxSeries| . |CoercibleTo|) 268406) ((|UnivariatePuiseuxSeries| . |Type|) T) ((|UnivariatePuiseuxSeries| . |Join|) T) ((|UnivariatePuiseuxSeries| . |BasicType|) T) ((|UnivariatePuiseuxSeries| . |AbelianSemiGroup|) T) ((|UnivariatePuiseuxSeries| . |CancellationAbelianMonoid|) T) ((|UnivariatePuiseuxSeries| . |EntireRing|) 268345) ((|UnivariatePuiseuxSeries| . |DivisionRing|) 268321) ((|UnivariatePuiseuxSeries| . |RadicalCategory|) 268270) ((|UnivariatePuiseuxSeries| . |TranscendentalFunctionCategory|) 268219) ((|UnivariatePuiseuxSeries| . |TrigonometricFunctionCategory|) 268168) ((|UnivariatePuiseuxSeries| . |HyperbolicFunctionCategory|) 268117) ((|UnivariatePuiseuxSeries| . |ElementaryFunctionCategory|) 268066) ((|UnivariatePuiseuxSeries| . |ArcTrigonometricFunctionCategory|) 268015) ((|UnivariatePuiseuxSeries| . |ArcHyperbolicFunctionCategory|) 267964) ((|UnivariatePuiseuxSeries| . |UnivariatePowerSeriesCategory|) 267923) ((|UnivariatePuiseuxSeries| . |AbelianMonoidRing|) 267882) ((|UnivariatePuiseuxSeries| . |Functorial|) 267866) ((|UnivariatePuiseuxSeries| . |CharacteristicZero|) 267829) ((|UnivariatePuiseuxSeries| . |CharacteristicNonZero|) 267789) ((|UnivariatePuiseuxSeries| . |PowerSeriesCategory|) 267722) ((|UnivariatePuiseuxSeries| . |PartialDifferentialSpace|) 267584) ((|UnivariatePuiseuxSeries| . |PartialDifferentialDomain|) 267416) ((|UnivariatePuiseuxSeries| . |PartialDifferentialRing|) 267278) ((|UnivariatePuiseuxSeries| . |Eltable|) 267225) ((|UnivariatePuiseuxSeries| . |DifferentialSpace|) 267160) ((|UnivariatePuiseuxSeries| . |DifferentialDomain|) 267089) ((|UnivariatePuiseuxSeries| . |DifferentialRing|) 267024) ((|UnivariatePuiseuxSeries| . |UnivariatePuiseuxSeriesCategory|) 267008) ((|UnivariatePuiseuxSeries| . |RetractableTo|) 266904) ((|UnivariatePolynomial| . |UnivariatePolynomialCategory|) 266888) ((|UnivariatePolynomial| . |StepThrough|) 266858) ((|UnivariatePolynomial| . |ConvertibleTo|) NIL) ((|UnivariatePolynomial| . |Evalable|) 266845) ((|UnivariatePolynomial| . |InnerEvalable|) 266774) ((|UnivariatePolynomial| . |FiniteAbelianMonoidRing|) 266735) ((|UnivariatePolynomial| . |RetractableTo|) 266545) ((|UnivariatePolynomial| . |FullyRetractableTo|) 266529) ((|UnivariatePolynomial| . |Algebra|) 266269) ((|UnivariatePolynomial| . |BiModule|) 265989) ((|UnivariatePolynomial| . |RightLinearSet|) 265723) ((|UnivariatePolynomial| . |RightModule|) 265457) ((|UnivariatePolynomial| . |LeftLinearSet|) 265334) ((|UnivariatePolynomial| . |LeftModule|) 265163) ((|UnivariatePolynomial| . |LinearSet|) 264903) ((|UnivariatePolynomial| . |Module|) 264643) ((|UnivariatePolynomial| . |CoercibleFrom|) 264269) ((|UnivariatePolynomial| . |CharacteristicNonZero|) 264229) ((|UnivariatePolynomial| . |CharacteristicZero|) 264192) ((|UnivariatePolynomial| . |Functorial|) 264176) ((|UnivariatePolynomial| . |AbelianMonoidRing|) 264137) ((|UnivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 264121) ((|UnivariatePolynomial| . |LinearlyExplicitRingOver|) 264037) ((|UnivariatePolynomial| . |PartialDifferentialRing|) 263935) ((|UnivariatePolynomial| . |PartialDifferentialDomain|) 263771) ((|UnivariatePolynomial| . |PartialDifferentialSpace|) 263611) ((|UnivariatePolynomial| . |PatternMatchable|) NIL) ((|UnivariatePolynomial| . |PolynomialFactorizationExplicit|) 263561) ((|UnivariatePolynomial| . |UniqueFactorizationDomain|) 263511) ((|UnivariatePolynomial| . |PolynomialCategory|) 263446) ((|UnivariatePolynomial| . |PrincipalIdealDomain|) 263422) ((|UnivariatePolynomial| . |IntegralDomain|) 263285) ((|UnivariatePolynomial| . |EntireRing|) 263148) ((|UnivariatePolynomial| . |CommutativeRing|) 262978) ((|UnivariatePolynomial| . |GcdDomain|) 262873) ((|UnivariatePolynomial| . |EuclideanDomain|) 262849) ((|UnivariatePolynomial| . |Eltable|) 262752) ((|UnivariatePolynomial| . |DifferentialRing|) T) ((|UnivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|UnivariatePolynomial| . |AbelianSemiGroup|) T) ((|UnivariatePolynomial| . |BasicType|) T) ((|UnivariatePolynomial| . |CoercibleTo|) 262726) ((|UnivariatePolynomial| . |SetCategory|) T) ((|UnivariatePolynomial| . |AbelianMonoid|) T) ((|UnivariatePolynomial| . |AbelianGroup|) T) ((|UnivariatePolynomial| . |Rng|) T) ((|UnivariatePolynomial| . |SemiGroup|) T) ((|UnivariatePolynomial| . |SemiRing|) T) ((|UnivariatePolynomial| . |Monoid|) T) ((|UnivariatePolynomial| . |Ring|) T) ((|UnivariatePolynomial| . |DifferentialDomain|) 262713) ((|UnivariatePolynomial| . |Join|) T) ((|UnivariatePolynomial| . |Type|) T) ((|UnivariatePolynomial| . |DifferentialSpace|) T) ((|UnivariatePolynomial| . |DifferentialSpaceExtension|) 262697) ((|UnivariatePolynomial| . |DifferentialExtension|) 262681) ((|UniversalSegment| . |SegmentCategory|) 262665) ((|UniversalSegment| . |ConvertibleFrom|) 262649) ((|UniversalSegment| . |SetCategory|) 262619) ((|UniversalSegment| . |CoercibleTo|) 262570) ((|UniversalSegment| . |Type|) 262540) ((|UniversalSegment| . |Join|) 262510) ((|UniversalSegment| . |BasicType|) 262480) ((|UniversalSegment| . |SegmentExpansionCategory|) 262425) ((|UnivariateLaurentSeriesConstructor| . |UnivariateLaurentSeriesConstructorCategory|) 262404) ((|UnivariateLaurentSeriesConstructor| . |RadicalCategory|) 262353) ((|UnivariateLaurentSeriesConstructor| . |TranscendentalFunctionCategory|) 262302) ((|UnivariateLaurentSeriesConstructor| . |TrigonometricFunctionCategory|) 262251) ((|UnivariateLaurentSeriesConstructor| . |HyperbolicFunctionCategory|) 262200) ((|UnivariateLaurentSeriesConstructor| . |ElementaryFunctionCategory|) 262149) ((|UnivariateLaurentSeriesConstructor| . |ArcTrigonometricFunctionCategory|) 262098) ((|UnivariateLaurentSeriesConstructor| . |ArcHyperbolicFunctionCategory|) 262047) ((|UnivariateLaurentSeriesConstructor| . |UnivariatePowerSeriesCategory|) 262019) ((|UnivariateLaurentSeriesConstructor| . |AbelianMonoidRing|) 261991) ((|UnivariateLaurentSeriesConstructor| . |Functorial|) 261945) ((|UnivariateLaurentSeriesConstructor| . |CoercibleFrom|) 261616) ((|UnivariateLaurentSeriesConstructor| . |Module|) 261374) ((|UnivariateLaurentSeriesConstructor| . |LinearSet|) 261132) ((|UnivariateLaurentSeriesConstructor| . |LeftModule|) 260874) ((|UnivariateLaurentSeriesConstructor| . |LeftLinearSet|) 260693) ((|UnivariateLaurentSeriesConstructor| . |RightModule|) 260445) ((|UnivariateLaurentSeriesConstructor| . |RightLinearSet|) 260197) ((|UnivariateLaurentSeriesConstructor| . |BiModule|) 259930) ((|UnivariateLaurentSeriesConstructor| . |Algebra|) 259688) ((|UnivariateLaurentSeriesConstructor| . |PowerSeriesCategory|) 259634) ((|UnivariateLaurentSeriesConstructor| . |Eltable|) 259521) ((|UnivariateLaurentSeriesConstructor| . |UnivariateLaurentSeriesCategory|) 259505) ((|UnivariateLaurentSeriesConstructor| . |Rng|) T) ((|UnivariateLaurentSeriesConstructor| . |SemiGroup|) T) ((|UnivariateLaurentSeriesConstructor| . |SemiRing|) T) ((|UnivariateLaurentSeriesConstructor| . |Monoid|) T) ((|UnivariateLaurentSeriesConstructor| . |Ring|) T) ((|UnivariateLaurentSeriesConstructor| . |AbelianGroup|) T) ((|UnivariateLaurentSeriesConstructor| . |AbelianMonoid|) T) ((|UnivariateLaurentSeriesConstructor| . |SetCategory|) T) ((|UnivariateLaurentSeriesConstructor| . |CoercibleTo|) 259479) ((|UnivariateLaurentSeriesConstructor| . |Type|) T) ((|UnivariateLaurentSeriesConstructor| . |Join|) T) ((|UnivariateLaurentSeriesConstructor| . |BasicType|) T) ((|UnivariateLaurentSeriesConstructor| . |AbelianSemiGroup|) T) ((|UnivariateLaurentSeriesConstructor| . |CancellationAbelianMonoid|) T) ((|UnivariateLaurentSeriesConstructor| . |CharacteristicNonZero|) 259366) ((|UnivariateLaurentSeriesConstructor| . |CharacteristicZero|) 259191) ((|UnivariateLaurentSeriesConstructor| . |ConvertibleTo|) 258734) ((|UnivariateLaurentSeriesConstructor| . |DifferentialExtension|) 258701) ((|UnivariateLaurentSeriesConstructor| . |PartialDifferentialRing|) 258490) ((|UnivariateLaurentSeriesConstructor| . |PartialDifferentialSpace|) 258197) ((|UnivariateLaurentSeriesConstructor| . |PartialDifferentialDomain|) 257902) ((|UnivariateLaurentSeriesConstructor| . |DifferentialSpaceExtension|) 257869) ((|UnivariateLaurentSeriesConstructor| . |DifferentialSpace|) 257685) ((|UnivariateLaurentSeriesConstructor| . |DifferentialDomain|) 257495) ((|UnivariateLaurentSeriesConstructor| . |DifferentialRing|) 257375) ((|UnivariateLaurentSeriesConstructor| . |Field|) 257351) ((|UnivariateLaurentSeriesConstructor| . |UniqueFactorizationDomain|) 257327) ((|UnivariateLaurentSeriesConstructor| . |PrincipalIdealDomain|) 257303) ((|UnivariateLaurentSeriesConstructor| . |IntegralDomain|) 257242) ((|UnivariateLaurentSeriesConstructor| . |CommutativeRing|) 257148) ((|UnivariateLaurentSeriesConstructor| . |GcdDomain|) 257124) ((|UnivariateLaurentSeriesConstructor| . |EuclideanDomain|) 257100) ((|UnivariateLaurentSeriesConstructor| . |EntireRing|) 257039) ((|UnivariateLaurentSeriesConstructor| . |DivisionRing|) 257015) ((|UnivariateLaurentSeriesConstructor| . |FullyEvalableOver|) 256982) ((|UnivariateLaurentSeriesConstructor| . |InnerEvalable|) 256813) ((|UnivariateLaurentSeriesConstructor| . |Evalable|) 256743) ((|UnivariateLaurentSeriesConstructor| . |FullyLinearlyExplicitRingOver|) 256710) ((|UnivariateLaurentSeriesConstructor| . |LinearlyExplicitRingOver|) 256580) ((|UnivariateLaurentSeriesConstructor| . |FullyPatternMatchable|) 256547) ((|UnivariateLaurentSeriesConstructor| . |PatternMatchable|) 256370) ((|UnivariateLaurentSeriesConstructor| . |OrderedIntegralDomain|) 256301) ((|UnivariateLaurentSeriesConstructor| . |OrderedAbelianGroup|) 256232) ((|UnivariateLaurentSeriesConstructor| . |OrderedAbelianMonoid|) 256163) ((|UnivariateLaurentSeriesConstructor| . |OrderedSet|) 256032) ((|UnivariateLaurentSeriesConstructor| . |OrderedType|) 255901) ((|UnivariateLaurentSeriesConstructor| . |OrderedAbelianSemiGroup|) 255832) ((|UnivariateLaurentSeriesConstructor| . |OrderedCancellationAbelianMonoid|) 255763) ((|UnivariateLaurentSeriesConstructor| . |OrderedRing|) 255694) ((|UnivariateLaurentSeriesConstructor| . |Patternable|) 255661) ((|UnivariateLaurentSeriesConstructor| . |PolynomialFactorizationExplicit|) 255582) ((|UnivariateLaurentSeriesConstructor| . |RealConstant|) 255522) ((|UnivariateLaurentSeriesConstructor| . |RetractableTo|) 255237) ((|UnivariateLaurentSeriesConstructor| . |StepThrough|) 255178) ((|UnivariateLaurentSeriesConstructor| . |QuotientFieldCategory|) 255145) ((|UnivariateLaurentSeries| . |UnivariateLaurentSeriesConstructorCategory|) 255087) ((|UnivariateLaurentSeries| . |RadicalCategory|) 255036) ((|UnivariateLaurentSeries| . |TranscendentalFunctionCategory|) 254985) ((|UnivariateLaurentSeries| . |TrigonometricFunctionCategory|) 254934) ((|UnivariateLaurentSeries| . |HyperbolicFunctionCategory|) 254883) ((|UnivariateLaurentSeries| . |ElementaryFunctionCategory|) 254832) ((|UnivariateLaurentSeries| . |ArcTrigonometricFunctionCategory|) 254781) ((|UnivariateLaurentSeries| . |ArcHyperbolicFunctionCategory|) 254730) ((|UnivariateLaurentSeries| . |UnivariatePowerSeriesCategory|) 254702) ((|UnivariateLaurentSeries| . |AbelianMonoidRing|) 254674) ((|UnivariateLaurentSeries| . |Functorial|) 254591) ((|UnivariateLaurentSeries| . |CoercibleFrom|) 254309) ((|UnivariateLaurentSeries| . |Module|) 254030) ((|UnivariateLaurentSeries| . |LinearSet|) 253751) ((|UnivariateLaurentSeries| . |LeftModule|) 253553) ((|UnivariateLaurentSeries| . |LeftLinearSet|) 253335) ((|UnivariateLaurentSeries| . |RightModule|) 253050) ((|UnivariateLaurentSeries| . |RightLinearSet|) 252765) ((|UnivariateLaurentSeries| . |BiModule|) 252459) ((|UnivariateLaurentSeries| . |Algebra|) 252180) ((|UnivariateLaurentSeries| . |PowerSeriesCategory|) 252126) ((|UnivariateLaurentSeries| . |Eltable|) 251865) ((|UnivariateLaurentSeries| . |UnivariateLaurentSeriesCategory|) 251849) ((|UnivariateLaurentSeries| . |Rng|) T) ((|UnivariateLaurentSeries| . |SemiGroup|) T) ((|UnivariateLaurentSeries| . |SemiRing|) T) ((|UnivariateLaurentSeries| . |Monoid|) T) ((|UnivariateLaurentSeries| . |Ring|) T) ((|UnivariateLaurentSeries| . |AbelianGroup|) T) ((|UnivariateLaurentSeries| . |AbelianMonoid|) T) ((|UnivariateLaurentSeries| . |SetCategory|) T) ((|UnivariateLaurentSeries| . |CoercibleTo|) 251823) ((|UnivariateLaurentSeries| . |Type|) T) ((|UnivariateLaurentSeries| . |Join|) T) ((|UnivariateLaurentSeries| . |BasicType|) T) ((|UnivariateLaurentSeries| . |AbelianSemiGroup|) T) ((|UnivariateLaurentSeries| . |CancellationAbelianMonoid|) T) ((|UnivariateLaurentSeries| . |CharacteristicNonZero|) 251673) ((|UnivariateLaurentSeries| . |CharacteristicZero|) 251529) ((|UnivariateLaurentSeries| . |ConvertibleTo|) NIL) ((|UnivariateLaurentSeries| . |DifferentialExtension|) 251459) ((|UnivariateLaurentSeries| . |PartialDifferentialRing|) 251211) ((|UnivariateLaurentSeries| . |PartialDifferentialSpace|) 250844) ((|UnivariateLaurentSeries| . |PartialDifferentialDomain|) 250447) ((|UnivariateLaurentSeries| . |DifferentialSpaceExtension|) 250377) ((|UnivariateLaurentSeries| . |DifferentialSpace|) 250119) ((|UnivariateLaurentSeries| . |DifferentialDomain|) 249855) ((|UnivariateLaurentSeries| . |DifferentialRing|) 249698) ((|UnivariateLaurentSeries| . |Field|) 249674) ((|UnivariateLaurentSeries| . |UniqueFactorizationDomain|) 249650) ((|UnivariateLaurentSeries| . |PrincipalIdealDomain|) 249626) ((|UnivariateLaurentSeries| . |IntegralDomain|) 249565) ((|UnivariateLaurentSeries| . |CommutativeRing|) 249471) ((|UnivariateLaurentSeries| . |GcdDomain|) 249447) ((|UnivariateLaurentSeries| . |EuclideanDomain|) 249423) ((|UnivariateLaurentSeries| . |EntireRing|) 249362) ((|UnivariateLaurentSeries| . |DivisionRing|) 249338) ((|UnivariateLaurentSeries| . |FullyEvalableOver|) 249268) ((|UnivariateLaurentSeries| . |InnerEvalable|) 248913) ((|UnivariateLaurentSeries| . |Evalable|) 248732) ((|UnivariateLaurentSeries| . |FullyLinearlyExplicitRingOver|) 248662) ((|UnivariateLaurentSeries| . |LinearlyExplicitRingOver|) 248592) ((|UnivariateLaurentSeries| . |FullyPatternMatchable|) 248522) ((|UnivariateLaurentSeries| . |PatternMatchable|) NIL) ((|UnivariateLaurentSeries| . |OrderedIntegralDomain|) NIL) ((|UnivariateLaurentSeries| . |OrderedAbelianGroup|) NIL) ((|UnivariateLaurentSeries| . |OrderedAbelianMonoid|) NIL) ((|UnivariateLaurentSeries| . |OrderedSet|) NIL) ((|UnivariateLaurentSeries| . |OrderedType|) NIL) ((|UnivariateLaurentSeries| . |OrderedAbelianSemiGroup|) NIL) ((|UnivariateLaurentSeries| . |OrderedCancellationAbelianMonoid|) NIL) ((|UnivariateLaurentSeries| . |OrderedRing|) NIL) ((|UnivariateLaurentSeries| . |Patternable|) 248452) ((|UnivariateLaurentSeries| . |PolynomialFactorizationExplicit|) NIL) ((|UnivariateLaurentSeries| . |RealConstant|) NIL) ((|UnivariateLaurentSeries| . |RetractableTo|) 248399) ((|UnivariateLaurentSeries| . |StepThrough|) NIL) ((|UnivariateLaurentSeries| . |QuotientFieldCategory|) 248329) ((|UInt8| . |OrderedFinite|) T) ((|UInt8| . |OrderedType|) T) ((|UInt8| . |OrderedSet|) T) ((|UInt8| . |SetCategory|) T) ((|UInt8| . |CoercibleTo|) 248303) ((|UInt8| . |Type|) T) ((|UInt8| . |Join|) T) ((|UInt8| . |BasicType|) T) ((|UInt8| . |Finite|) T) ((|UInt8| . |Logic|) T) ((|UInt64| . |OrderedFinite|) T) ((|UInt64| . |OrderedType|) T) ((|UInt64| . |OrderedSet|) T) ((|UInt64| . |SetCategory|) T) ((|UInt64| . |CoercibleTo|) 248277) ((|UInt64| . |Type|) T) ((|UInt64| . |Join|) T) ((|UInt64| . |BasicType|) T) ((|UInt64| . |Finite|) T) ((|UInt64| . |Logic|) T) ((|UInt32| . |OrderedFinite|) T) ((|UInt32| . |OrderedType|) T) ((|UInt32| . |OrderedSet|) T) ((|UInt32| . |SetCategory|) T) ((|UInt32| . |CoercibleTo|) 248251) ((|UInt32| . |Type|) T) ((|UInt32| . |Join|) T) ((|UInt32| . |BasicType|) T) ((|UInt32| . |Finite|) T) ((|UInt32| . |Logic|) T) ((|UInt16| . |OrderedFinite|) T) ((|UInt16| . |OrderedType|) T) ((|UInt16| . |OrderedSet|) T) ((|UInt16| . |SetCategory|) T) ((|UInt16| . |CoercibleTo|) 248225) ((|UInt16| . |Type|) T) ((|UInt16| . |Join|) T) ((|UInt16| . |BasicType|) T) ((|UInt16| . |Finite|) T) ((|UInt16| . |Logic|) T) ((|TypeAst| . |SpadSyntaxCategory|) T) ((|TypeAst| . |HomotopicTo|) 248203) ((|TypeAst| . |CoercibleTo|) 248158) ((|TypeAst| . |CoercibleFrom|) 248136) ((|TypeAst| . |SetCategory|) T) ((|TypeAst| . |Type|) T) ((|TypeAst| . |Join|) T) ((|TypeAst| . |BasicType|) T) ((|TypeAst| . |AbstractSyntaxCategory|) T) ((|Tuple| . |HomotopicTo|) 248101) ((|Tuple| . |CoercibleTo|) 248011) ((|Tuple| . |CoercibleFrom|) 247976) ((|Tuple| . |SetCategory|) 247946) ((|Tuple| . |Type|) 247916) ((|Tuple| . |Join|) 247886) ((|Tuple| . |BasicType|) 247856) ((|TaylorSeries| . |MultivariateTaylorSeriesCategory|) 247829) ((|TaylorSeries| . |ArcHyperbolicFunctionCategory|) 247778) ((|TaylorSeries| . |ArcTrigonometricFunctionCategory|) 247727) ((|TaylorSeries| . |ElementaryFunctionCategory|) 247676) ((|TaylorSeries| . |HyperbolicFunctionCategory|) 247625) ((|TaylorSeries| . |TrigonometricFunctionCategory|) 247574) ((|TaylorSeries| . |TranscendentalFunctionCategory|) 247523) ((|TaylorSeries| . |RadicalCategory|) 247472) ((|TaylorSeries| . |AbelianMonoidRing|) 247424) ((|TaylorSeries| . |Algebra|) 247268) ((|TaylorSeries| . |LinearSet|) 247112) ((|TaylorSeries| . |Module|) 246956) ((|TaylorSeries| . |CoercibleFrom|) 246780) ((|TaylorSeries| . |EntireRing|) 246747) ((|TaylorSeries| . |IntegralDomain|) 246714) ((|TaylorSeries| . |Functorial|) 246698) ((|TaylorSeries| . |BiModule|) 246517) ((|TaylorSeries| . |RightLinearSet|) 246350) ((|TaylorSeries| . |RightModule|) 246183) ((|TaylorSeries| . |CommutativeRing|) 246112) ((|TaylorSeries| . |CharacteristicZero|) 246075) ((|TaylorSeries| . |CharacteristicNonZero|) 246035) ((|TaylorSeries| . |LeftModule|) 245932) ((|TaylorSeries| . |LeftLinearSet|) 245809) ((|TaylorSeries| . |PowerSeriesCategory|) 245754) ((|TaylorSeries| . |PartialDifferentialSpace|) 245732) ((|TaylorSeries| . |Type|) T) ((|TaylorSeries| . |Join|) T) ((|TaylorSeries| . |PartialDifferentialDomain|) 245708) ((|TaylorSeries| . |Ring|) T) ((|TaylorSeries| . |Monoid|) T) ((|TaylorSeries| . |SemiRing|) T) ((|TaylorSeries| . |SemiGroup|) T) ((|TaylorSeries| . |Rng|) T) ((|TaylorSeries| . |AbelianGroup|) T) ((|TaylorSeries| . |AbelianMonoid|) T) ((|TaylorSeries| . |SetCategory|) T) ((|TaylorSeries| . |CoercibleTo|) 245682) ((|TaylorSeries| . |BasicType|) T) ((|TaylorSeries| . |AbelianSemiGroup|) T) ((|TaylorSeries| . |CancellationAbelianMonoid|) T) ((|TaylorSeries| . |PartialDifferentialRing|) 245660) ((|TaylorSeries| . |InnerEvalable|) 245624) ((|TaylorSeries| . |Evalable|) 245611) ((|Tree| . |RecursiveAggregate|) 245595) ((|Tree| . |Aggregate|) T) ((|Tree| . |Join|) T) ((|Tree| . |Type|) T) ((|Tree| . |BasicType|) 245533) ((|Tree| . |CoercibleTo|) 245435) ((|Tree| . |Evalable|) 245359) ((|Tree| . |InnerEvalable|) 245278) ((|Tree| . |Functorial|) 245262) ((|Tree| . |SetCategory|) 245232) ((|Tree| . |HomogeneousAggregate|) 245216) ((|Tree| . |FiniteAggregate|) 245200) ((|Tree| . |ShallowlyMutableAggregate|) 245184) ((|TextFile| . |FileCategory|) 245149) ((|TextFile| . |BasicType|) T) ((|TextFile| . |Join|) T) ((|TextFile| . |Type|) T) ((|TextFile| . |CoercibleTo|) 245123) ((|TextFile| . |SetCategory|) T) ((|TexFormat| . |SetCategory|) T) ((|TexFormat| . |CoercibleTo|) 245097) ((|TexFormat| . |Type|) T) ((|TexFormat| . |Join|) T) ((|TexFormat| . |BasicType|) T) ((|TexFormat| . |CoercibleFrom|) 245071) ((|TermAlgebraOperator| . |OperatorCategory|) 245055) ((|TermAlgebraOperator| . |BasicType|) T) ((|TermAlgebraOperator| . |Join|) T) ((|TermAlgebraOperator| . |Type|) T) ((|TermAlgebraOperator| . |CoercibleTo|) 245029) ((|TermAlgebraOperator| . |SetCategory|) T) ((|Tableau| . |CoercibleTo|) 245003) ((|Table| . |TableAggregate|) 244982) ((|Table| . |Dictionary|) 244924) ((|Table| . |BagAggregate|) 244866) ((|Table| . |ShallowlyMutableAggregate|) 244795) ((|Table| . |Collection|) 244737) ((|Table| . |ConvertibleTo|) NIL) ((|Table| . |DictionaryOperations|) 244679) ((|Table| . |IndexedAggregate|) 244658) ((|Table| . |Evalable|) 244418) ((|Table| . |InnerEvalable|) 244166) ((|Table| . |Functorial|) 244095) ((|Table| . |HomogeneousAggregate|) 244024) ((|Table| . |Eltable|) 244003) ((|Table| . |EltableAggregate|) 243982) ((|Table| . |KeyedDictionary|) 243961) ((|Table| . |SetCategory|) T) ((|Table| . |CoercibleTo|) 243935) ((|Table| . |BasicType|) T) ((|Table| . |Type|) T) ((|Table| . |Join|) T) ((|Table| . |Aggregate|) T) ((|Table| . |FiniteAggregate|) 243877) ((|SystemPointer| . |SetCategory|) T) ((|SystemPointer| . |CoercibleTo|) 243851) ((|SystemPointer| . |Type|) T) ((|SystemPointer| . |Join|) T) ((|SystemPointer| . |BasicType|) T) ((|SystemNonNegativeInteger| . |OrderedFinite|) T) ((|SystemNonNegativeInteger| . |OrderedType|) T) ((|SystemNonNegativeInteger| . |OrderedSet|) T) ((|SystemNonNegativeInteger| . |SetCategory|) T) ((|SystemNonNegativeInteger| . |CoercibleTo|) 243825) ((|SystemNonNegativeInteger| . |Type|) T) ((|SystemNonNegativeInteger| . |Join|) T) ((|SystemNonNegativeInteger| . |BasicType|) T) ((|SystemNonNegativeInteger| . |Finite|) T) ((|SystemNonNegativeInteger| . |Logic|) T) ((|SystemInteger| . |OrderedFinite|) T) ((|SystemInteger| . |OrderedType|) T) ((|SystemInteger| . |OrderedSet|) T) ((|SystemInteger| . |SetCategory|) T) ((|SystemInteger| . |CoercibleTo|) 243799) ((|SystemInteger| . |Type|) T) ((|SystemInteger| . |Join|) T) ((|SystemInteger| . |BasicType|) T) ((|SystemInteger| . |Finite|) T) ((|Syntax| . |UnionType|) T) ((|Syntax| . |SetCategory|) T) ((|Syntax| . |CoercibleTo|) 243751) ((|Syntax| . |Type|) T) ((|Syntax| . |Join|) T) ((|Syntax| . |BasicType|) T) ((|Syntax| . |RetractableTo|) 243662) ((|Syntax| . |CoercibleFrom|) 243573) ((|SymbolTable| . |CoercibleTo|) 243502) ((|TheSymbolTable| . |CoercibleTo|) 243476) ((|SymmetricPolynomial| . |FiniteAbelianMonoidRing|) 243446) ((|SymmetricPolynomial| . |RetractableTo|) 243290) ((|SymmetricPolynomial| . |FullyRetractableTo|) 243274) ((|SymmetricPolynomial| . |Algebra|) 243118) ((|SymmetricPolynomial| . |CoercibleFrom|) 242908) ((|SymmetricPolynomial| . |LeftModule|) 242805) ((|SymmetricPolynomial| . |LeftLinearSet|) 242682) ((|SymmetricPolynomial| . |Rng|) T) ((|SymmetricPolynomial| . |SemiGroup|) T) ((|SymmetricPolynomial| . |SemiRing|) T) ((|SymmetricPolynomial| . |Monoid|) T) ((|SymmetricPolynomial| . |Ring|) T) ((|SymmetricPolynomial| . |BiModule|) 242501) ((|SymmetricPolynomial| . |RightLinearSet|) 242334) ((|SymmetricPolynomial| . |RightModule|) 242167) ((|SymmetricPolynomial| . |AbelianGroup|) T) ((|SymmetricPolynomial| . |AbelianMonoid|) T) ((|SymmetricPolynomial| . |SetCategory|) T) ((|SymmetricPolynomial| . |CoercibleTo|) 242141) ((|SymmetricPolynomial| . |Type|) T) ((|SymmetricPolynomial| . |Join|) T) ((|SymmetricPolynomial| . |BasicType|) T) ((|SymmetricPolynomial| . |AbelianSemiGroup|) T) ((|SymmetricPolynomial| . |CancellationAbelianMonoid|) T) ((|SymmetricPolynomial| . |LinearSet|) 241985) ((|SymmetricPolynomial| . |Module|) 241829) ((|SymmetricPolynomial| . |CharacteristicNonZero|) 241789) ((|SymmetricPolynomial| . |CharacteristicZero|) 241752) ((|SymmetricPolynomial| . |CommutativeRing|) 241681) ((|SymmetricPolynomial| . |Functorial|) 241665) ((|SymmetricPolynomial| . |IntegralDomain|) 241632) ((|SymmetricPolynomial| . |EntireRing|) 241599) ((|SymmetricPolynomial| . |AbelianMonoidRing|) 241569) ((|Symbol| . |OrderedSet|) T) ((|Symbol| . |CoercibleTo|) 241543) ((|Symbol| . |SetCategory|) T) ((|Symbol| . |BasicType|) T) ((|Symbol| . |Join|) T) ((|Symbol| . |Type|) T) ((|Symbol| . |OrderedType|) T) ((|Symbol| . |ConvertibleTo|) 241437) ((|Symbol| . |CoercibleFrom|) 241392) ((|Symbol| . |RetractableTo|) 241366) ((|Symbol| . |PatternMatchable|) 241325) ((|SparseUnivariateTaylorSeries| . |UnivariateTaylorSeriesCategory|) 241309) ((|SparseUnivariateTaylorSeries| . |DifferentialRing|) 241246) ((|SparseUnivariateTaylorSeries| . |CoercibleFrom|) 241070) ((|SparseUnivariateTaylorSeries| . |LeftModule|) 240967) ((|SparseUnivariateTaylorSeries| . |LeftLinearSet|) 240844) ((|SparseUnivariateTaylorSeries| . |CancellationAbelianMonoid|) T) ((|SparseUnivariateTaylorSeries| . |AbelianSemiGroup|) T) ((|SparseUnivariateTaylorSeries| . |BasicType|) T) ((|SparseUnivariateTaylorSeries| . |CoercibleTo|) 240818) ((|SparseUnivariateTaylorSeries| . |SetCategory|) T) ((|SparseUnivariateTaylorSeries| . |AbelianMonoid|) T) ((|SparseUnivariateTaylorSeries| . |AbelianGroup|) T) ((|SparseUnivariateTaylorSeries| . |Rng|) T) ((|SparseUnivariateTaylorSeries| . |SemiGroup|) T) ((|SparseUnivariateTaylorSeries| . |SemiRing|) T) ((|SparseUnivariateTaylorSeries| . |Monoid|) T) ((|SparseUnivariateTaylorSeries| . |Ring|) T) ((|SparseUnivariateTaylorSeries| . |DifferentialDomain|) 240749) ((|SparseUnivariateTaylorSeries| . |Join|) T) ((|SparseUnivariateTaylorSeries| . |Type|) T) ((|SparseUnivariateTaylorSeries| . |DifferentialSpace|) 240686) ((|SparseUnivariateTaylorSeries| . |Eltable|) 240635) ((|SparseUnivariateTaylorSeries| . |PartialDifferentialRing|) 240499) ((|SparseUnivariateTaylorSeries| . |PartialDifferentialDomain|) 240333) ((|SparseUnivariateTaylorSeries| . |PartialDifferentialSpace|) 240197) ((|SparseUnivariateTaylorSeries| . |PowerSeriesCategory|) 240132) ((|SparseUnivariateTaylorSeries| . |Algebra|) 239976) ((|SparseUnivariateTaylorSeries| . |BiModule|) 239795) ((|SparseUnivariateTaylorSeries| . |RightLinearSet|) 239628) ((|SparseUnivariateTaylorSeries| . |RightModule|) 239461) ((|SparseUnivariateTaylorSeries| . |LinearSet|) 239305) ((|SparseUnivariateTaylorSeries| . |Module|) 239149) ((|SparseUnivariateTaylorSeries| . |CharacteristicNonZero|) 239109) ((|SparseUnivariateTaylorSeries| . |CharacteristicZero|) 239072) ((|SparseUnivariateTaylorSeries| . |CommutativeRing|) 239001) ((|SparseUnivariateTaylorSeries| . |Functorial|) 238985) ((|SparseUnivariateTaylorSeries| . |IntegralDomain|) 238952) ((|SparseUnivariateTaylorSeries| . |EntireRing|) 238919) ((|SparseUnivariateTaylorSeries| . |AbelianMonoidRing|) 238880) ((|SparseUnivariateTaylorSeries| . |UnivariatePowerSeriesCategory|) 238841) ((|SparseUnivariateTaylorSeries| . |ArcHyperbolicFunctionCategory|) 238790) ((|SparseUnivariateTaylorSeries| . |ArcTrigonometricFunctionCategory|) 238739) ((|SparseUnivariateTaylorSeries| . |ElementaryFunctionCategory|) 238688) ((|SparseUnivariateTaylorSeries| . |HyperbolicFunctionCategory|) 238637) ((|SparseUnivariateTaylorSeries| . |TrigonometricFunctionCategory|) 238586) ((|SparseUnivariateTaylorSeries| . |TranscendentalFunctionCategory|) 238535) ((|SparseUnivariateTaylorSeries| . |RadicalCategory|) 238484) ((|SparseUnivariatePuiseuxSeries| . |UnivariatePuiseuxSeriesConstructorCategory|) 238419) ((|SparseUnivariatePuiseuxSeries| . |Field|) 238395) ((|SparseUnivariatePuiseuxSeries| . |UniqueFactorizationDomain|) 238371) ((|SparseUnivariatePuiseuxSeries| . |PrincipalIdealDomain|) 238347) ((|SparseUnivariatePuiseuxSeries| . |IntegralDomain|) 238286) ((|SparseUnivariatePuiseuxSeries| . |CommutativeRing|) 238192) ((|SparseUnivariatePuiseuxSeries| . |CoercibleFrom|) 237821) ((|SparseUnivariatePuiseuxSeries| . |Module|) 237609) ((|SparseUnivariatePuiseuxSeries| . |LinearSet|) 237397) ((|SparseUnivariatePuiseuxSeries| . |Algebra|) 237185) ((|SparseUnivariatePuiseuxSeries| . |GcdDomain|) 237161) ((|SparseUnivariatePuiseuxSeries| . |EuclideanDomain|) 237137) ((|SparseUnivariatePuiseuxSeries| . |LeftModule|) 237006) ((|SparseUnivariatePuiseuxSeries| . |LeftLinearSet|) 236855) ((|SparseUnivariatePuiseuxSeries| . |Rng|) T) ((|SparseUnivariatePuiseuxSeries| . |SemiGroup|) T) ((|SparseUnivariatePuiseuxSeries| . |SemiRing|) T) ((|SparseUnivariatePuiseuxSeries| . |Monoid|) T) ((|SparseUnivariatePuiseuxSeries| . |Ring|) T) ((|SparseUnivariatePuiseuxSeries| . |BiModule|) 236623) ((|SparseUnivariatePuiseuxSeries| . |RightLinearSet|) 236405) ((|SparseUnivariatePuiseuxSeries| . |RightModule|) 236187) ((|SparseUnivariatePuiseuxSeries| . |AbelianGroup|) T) ((|SparseUnivariatePuiseuxSeries| . |AbelianMonoid|) T) ((|SparseUnivariatePuiseuxSeries| . |SetCategory|) T) ((|SparseUnivariatePuiseuxSeries| . |CoercibleTo|) 236161) ((|SparseUnivariatePuiseuxSeries| . |Type|) T) ((|SparseUnivariatePuiseuxSeries| . |Join|) T) ((|SparseUnivariatePuiseuxSeries| . |BasicType|) T) ((|SparseUnivariatePuiseuxSeries| . |AbelianSemiGroup|) T) ((|SparseUnivariatePuiseuxSeries| . |CancellationAbelianMonoid|) T) ((|SparseUnivariatePuiseuxSeries| . |EntireRing|) 236100) ((|SparseUnivariatePuiseuxSeries| . |DivisionRing|) 236076) ((|SparseUnivariatePuiseuxSeries| . |RadicalCategory|) 236025) ((|SparseUnivariatePuiseuxSeries| . |TranscendentalFunctionCategory|) 235974) ((|SparseUnivariatePuiseuxSeries| . |TrigonometricFunctionCategory|) 235923) ((|SparseUnivariatePuiseuxSeries| . |HyperbolicFunctionCategory|) 235872) ((|SparseUnivariatePuiseuxSeries| . |ElementaryFunctionCategory|) 235821) ((|SparseUnivariatePuiseuxSeries| . |ArcTrigonometricFunctionCategory|) 235770) ((|SparseUnivariatePuiseuxSeries| . |ArcHyperbolicFunctionCategory|) 235719) ((|SparseUnivariatePuiseuxSeries| . |UnivariatePowerSeriesCategory|) 235678) ((|SparseUnivariatePuiseuxSeries| . |AbelianMonoidRing|) 235637) ((|SparseUnivariatePuiseuxSeries| . |Functorial|) 235621) ((|SparseUnivariatePuiseuxSeries| . |CharacteristicZero|) 235584) ((|SparseUnivariatePuiseuxSeries| . |CharacteristicNonZero|) 235544) ((|SparseUnivariatePuiseuxSeries| . |PowerSeriesCategory|) 235477) ((|SparseUnivariatePuiseuxSeries| . |PartialDifferentialSpace|) 235339) ((|SparseUnivariatePuiseuxSeries| . |PartialDifferentialDomain|) 235171) ((|SparseUnivariatePuiseuxSeries| . |PartialDifferentialRing|) 235033) ((|SparseUnivariatePuiseuxSeries| . |Eltable|) 234980) ((|SparseUnivariatePuiseuxSeries| . |DifferentialSpace|) 234915) ((|SparseUnivariatePuiseuxSeries| . |DifferentialDomain|) 234844) ((|SparseUnivariatePuiseuxSeries| . |DifferentialRing|) 234779) ((|SparseUnivariatePuiseuxSeries| . |UnivariatePuiseuxSeriesCategory|) 234763) ((|SparseUnivariatePuiseuxSeries| . |RetractableTo|) 234647) ((|SparseUnivariatePolynomial| . |UnivariatePolynomialCategory|) 234631) ((|SparseUnivariatePolynomial| . |StepThrough|) 234601) ((|SparseUnivariatePolynomial| . |ConvertibleTo|) NIL) ((|SparseUnivariatePolynomial| . |Evalable|) 234588) ((|SparseUnivariatePolynomial| . |InnerEvalable|) 234517) ((|SparseUnivariatePolynomial| . |FiniteAbelianMonoidRing|) 234478) ((|SparseUnivariatePolynomial| . |RetractableTo|) 234288) ((|SparseUnivariatePolynomial| . |FullyRetractableTo|) 234272) ((|SparseUnivariatePolynomial| . |Algebra|) 234012) ((|SparseUnivariatePolynomial| . |BiModule|) 233732) ((|SparseUnivariatePolynomial| . |RightLinearSet|) 233466) ((|SparseUnivariatePolynomial| . |RightModule|) 233200) ((|SparseUnivariatePolynomial| . |LeftLinearSet|) 233077) ((|SparseUnivariatePolynomial| . |LeftModule|) 232906) ((|SparseUnivariatePolynomial| . |LinearSet|) 232646) ((|SparseUnivariatePolynomial| . |Module|) 232386) ((|SparseUnivariatePolynomial| . |CoercibleFrom|) 232038) ((|SparseUnivariatePolynomial| . |CharacteristicNonZero|) 231998) ((|SparseUnivariatePolynomial| . |CharacteristicZero|) 231961) ((|SparseUnivariatePolynomial| . |Functorial|) 231945) ((|SparseUnivariatePolynomial| . |AbelianMonoidRing|) 231906) ((|SparseUnivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 231890) ((|SparseUnivariatePolynomial| . |LinearlyExplicitRingOver|) 231806) ((|SparseUnivariatePolynomial| . |PartialDifferentialRing|) 231704) ((|SparseUnivariatePolynomial| . |PartialDifferentialDomain|) 231540) ((|SparseUnivariatePolynomial| . |PartialDifferentialSpace|) 231380) ((|SparseUnivariatePolynomial| . |PatternMatchable|) NIL) ((|SparseUnivariatePolynomial| . |PolynomialFactorizationExplicit|) 231330) ((|SparseUnivariatePolynomial| . |UniqueFactorizationDomain|) 231280) ((|SparseUnivariatePolynomial| . |PolynomialCategory|) 231215) ((|SparseUnivariatePolynomial| . |PrincipalIdealDomain|) 231191) ((|SparseUnivariatePolynomial| . |IntegralDomain|) 231054) ((|SparseUnivariatePolynomial| . |EntireRing|) 230917) ((|SparseUnivariatePolynomial| . |CommutativeRing|) 230747) ((|SparseUnivariatePolynomial| . |GcdDomain|) 230642) ((|SparseUnivariatePolynomial| . |EuclideanDomain|) 230618) ((|SparseUnivariatePolynomial| . |Eltable|) 230521) ((|SparseUnivariatePolynomial| . |DifferentialRing|) T) ((|SparseUnivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|SparseUnivariatePolynomial| . |AbelianSemiGroup|) T) ((|SparseUnivariatePolynomial| . |BasicType|) T) ((|SparseUnivariatePolynomial| . |CoercibleTo|) 230495) ((|SparseUnivariatePolynomial| . |SetCategory|) T) ((|SparseUnivariatePolynomial| . |AbelianMonoid|) T) ((|SparseUnivariatePolynomial| . |AbelianGroup|) T) ((|SparseUnivariatePolynomial| . |Rng|) T) ((|SparseUnivariatePolynomial| . |SemiGroup|) T) ((|SparseUnivariatePolynomial| . |SemiRing|) T) ((|SparseUnivariatePolynomial| . |Monoid|) T) ((|SparseUnivariatePolynomial| . |Ring|) T) ((|SparseUnivariatePolynomial| . |DifferentialDomain|) 230482) ((|SparseUnivariatePolynomial| . |Join|) T) ((|SparseUnivariatePolynomial| . |Type|) T) ((|SparseUnivariatePolynomial| . |DifferentialSpace|) T) ((|SparseUnivariatePolynomial| . |DifferentialSpaceExtension|) 230466) ((|SparseUnivariatePolynomial| . |DifferentialExtension|) 230450) ((|SparseUnivariateLaurentSeries| . |UnivariateLaurentSeriesConstructorCategory|) 230386) ((|SparseUnivariateLaurentSeries| . |RadicalCategory|) 230335) ((|SparseUnivariateLaurentSeries| . |TranscendentalFunctionCategory|) 230284) ((|SparseUnivariateLaurentSeries| . |TrigonometricFunctionCategory|) 230233) ((|SparseUnivariateLaurentSeries| . |HyperbolicFunctionCategory|) 230182) ((|SparseUnivariateLaurentSeries| . |ElementaryFunctionCategory|) 230131) ((|SparseUnivariateLaurentSeries| . |ArcTrigonometricFunctionCategory|) 230080) ((|SparseUnivariateLaurentSeries| . |ArcHyperbolicFunctionCategory|) 230029) ((|SparseUnivariateLaurentSeries| . |UnivariatePowerSeriesCategory|) 230001) ((|SparseUnivariateLaurentSeries| . |AbelianMonoidRing|) 229973) ((|SparseUnivariateLaurentSeries| . |Functorial|) 229884) ((|SparseUnivariateLaurentSeries| . |CoercibleFrom|) 229596) ((|SparseUnivariateLaurentSeries| . |Module|) 229311) ((|SparseUnivariateLaurentSeries| . |LinearSet|) 229026) ((|SparseUnivariateLaurentSeries| . |LeftModule|) 228822) ((|SparseUnivariateLaurentSeries| . |LeftLinearSet|) 228598) ((|SparseUnivariateLaurentSeries| . |RightModule|) 228307) ((|SparseUnivariateLaurentSeries| . |RightLinearSet|) 228016) ((|SparseUnivariateLaurentSeries| . |BiModule|) 227704) ((|SparseUnivariateLaurentSeries| . |Algebra|) 227419) ((|SparseUnivariateLaurentSeries| . |PowerSeriesCategory|) 227365) ((|SparseUnivariateLaurentSeries| . |Eltable|) 227080) ((|SparseUnivariateLaurentSeries| . |UnivariateLaurentSeriesCategory|) 227064) ((|SparseUnivariateLaurentSeries| . |Rng|) T) ((|SparseUnivariateLaurentSeries| . |SemiGroup|) T) ((|SparseUnivariateLaurentSeries| . |SemiRing|) T) ((|SparseUnivariateLaurentSeries| . |Monoid|) T) ((|SparseUnivariateLaurentSeries| . |Ring|) T) ((|SparseUnivariateLaurentSeries| . |AbelianGroup|) T) ((|SparseUnivariateLaurentSeries| . |AbelianMonoid|) T) ((|SparseUnivariateLaurentSeries| . |SetCategory|) T) ((|SparseUnivariateLaurentSeries| . |CoercibleTo|) 227038) ((|SparseUnivariateLaurentSeries| . |Type|) T) ((|SparseUnivariateLaurentSeries| . |Join|) T) ((|SparseUnivariateLaurentSeries| . |BasicType|) T) ((|SparseUnivariateLaurentSeries| . |AbelianSemiGroup|) T) ((|SparseUnivariateLaurentSeries| . |CancellationAbelianMonoid|) T) ((|SparseUnivariateLaurentSeries| . |CharacteristicNonZero|) 226882) ((|SparseUnivariateLaurentSeries| . |CharacteristicZero|) 226732) ((|SparseUnivariateLaurentSeries| . |ConvertibleTo|) NIL) ((|SparseUnivariateLaurentSeries| . |DifferentialExtension|) 226656) ((|SparseUnivariateLaurentSeries| . |PartialDifferentialRing|) 226402) ((|SparseUnivariateLaurentSeries| . |PartialDifferentialSpace|) 226023) ((|SparseUnivariateLaurentSeries| . |PartialDifferentialDomain|) 225614) ((|SparseUnivariateLaurentSeries| . |DifferentialSpaceExtension|) 225538) ((|SparseUnivariateLaurentSeries| . |DifferentialSpace|) 225268) ((|SparseUnivariateLaurentSeries| . |DifferentialDomain|) 224992) ((|SparseUnivariateLaurentSeries| . |DifferentialRing|) 224829) ((|SparseUnivariateLaurentSeries| . |Field|) 224805) ((|SparseUnivariateLaurentSeries| . |UniqueFactorizationDomain|) 224781) ((|SparseUnivariateLaurentSeries| . |PrincipalIdealDomain|) 224757) ((|SparseUnivariateLaurentSeries| . |IntegralDomain|) 224696) ((|SparseUnivariateLaurentSeries| . |CommutativeRing|) 224602) ((|SparseUnivariateLaurentSeries| . |GcdDomain|) 224578) ((|SparseUnivariateLaurentSeries| . |EuclideanDomain|) 224554) ((|SparseUnivariateLaurentSeries| . |EntireRing|) 224493) ((|SparseUnivariateLaurentSeries| . |DivisionRing|) 224469) ((|SparseUnivariateLaurentSeries| . |FullyEvalableOver|) 224393) ((|SparseUnivariateLaurentSeries| . |InnerEvalable|) 224008) ((|SparseUnivariateLaurentSeries| . |Evalable|) 223809) ((|SparseUnivariateLaurentSeries| . |FullyLinearlyExplicitRingOver|) 223733) ((|SparseUnivariateLaurentSeries| . |LinearlyExplicitRingOver|) 223657) ((|SparseUnivariateLaurentSeries| . |FullyPatternMatchable|) 223581) ((|SparseUnivariateLaurentSeries| . |PatternMatchable|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedIntegralDomain|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedAbelianGroup|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedAbelianMonoid|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedSet|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedType|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedAbelianSemiGroup|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedCancellationAbelianMonoid|) NIL) ((|SparseUnivariateLaurentSeries| . |OrderedRing|) NIL) ((|SparseUnivariateLaurentSeries| . |Patternable|) 223505) ((|SparseUnivariateLaurentSeries| . |PolynomialFactorizationExplicit|) NIL) ((|SparseUnivariateLaurentSeries| . |RealConstant|) NIL) ((|SparseUnivariateLaurentSeries| . |RetractableTo|) 223446) ((|SparseUnivariateLaurentSeries| . |StepThrough|) NIL) ((|SparseUnivariateLaurentSeries| . |QuotientFieldCategory|) 223370) ((|SuchThatAst| . |SpadSyntaxCategory|) T) ((|SuchThatAst| . |HomotopicTo|) 223348) ((|SuchThatAst| . |CoercibleTo|) 223303) ((|SuchThatAst| . |CoercibleFrom|) 223281) ((|SuchThatAst| . |SetCategory|) T) ((|SuchThatAst| . |Type|) T) ((|SuchThatAst| . |Join|) T) ((|SuchThatAst| . |BasicType|) T) ((|SuchThatAst| . |AbstractSyntaxCategory|) T) ((|SuchThat| . |SetCategory|) T) ((|SuchThat| . |CoercibleTo|) 223255) ((|SuchThat| . |Type|) T) ((|SuchThat| . |Join|) T) ((|SuchThat| . |BasicType|) T) ((|SubSpace| . |SetCategory|) T) ((|SubSpace| . |CoercibleTo|) 223229) ((|SubSpace| . |Type|) T) ((|SubSpace| . |Join|) T) ((|SubSpace| . |BasicType|) T) ((|StringTable| . |TableAggregate|) 223202) ((|StringTable| . |Dictionary|) 223138) ((|StringTable| . |BagAggregate|) 223074) ((|StringTable| . |ShallowlyMutableAggregate|) 222997) ((|StringTable| . |Collection|) 222933) ((|StringTable| . |ConvertibleTo|) NIL) ((|StringTable| . |DictionaryOperations|) 222869) ((|StringTable| . |IndexedAggregate|) 222842) ((|StringTable| . |Evalable|) 222584) ((|StringTable| . |InnerEvalable|) 222314) ((|StringTable| . |Functorial|) 222237) ((|StringTable| . |HomogeneousAggregate|) 222160) ((|StringTable| . |Eltable|) 222133) ((|StringTable| . |EltableAggregate|) 222106) ((|StringTable| . |KeyedDictionary|) 222079) ((|StringTable| . |SetCategory|) T) ((|StringTable| . |CoercibleTo|) 222053) ((|StringTable| . |BasicType|) T) ((|StringTable| . |Type|) T) ((|StringTable| . |Join|) T) ((|StringTable| . |Aggregate|) T) ((|StringTable| . |FiniteAggregate|) 221989) ((|String| . |StringAggregate|) T) ((|String| . |FiniteLinearAggregate|) 221964) ((|String| . |OrderedType|) T) ((|String| . |OrderedSet|) T) ((|String| . |Collection|) 221939) ((|String| . |ConvertibleTo|) NIL) ((|String| . |Eltable|) 221859) ((|String| . |IndexedAggregate|) 221822) ((|String| . |EltableAggregate|) 221785) ((|String| . |LinearAggregate|) 221760) ((|String| . |HomogeneousAggregate|) 221735) ((|String| . |SetCategory|) T) ((|String| . |Functorial|) 221710) ((|String| . |InnerEvalable|) NIL) ((|String| . |Evalable|) NIL) ((|String| . |CoercibleTo|) 221684) ((|String| . |BasicType|) T) ((|String| . |Type|) T) ((|String| . |Join|) T) ((|String| . |Aggregate|) T) ((|String| . |FiniteAggregate|) 221659) ((|String| . |ShallowlyMutableAggregate|) 221634) ((|String| . |OneDimensionalArrayAggregate|) 221609) ((|Stream| . |LazyStreamAggregate|) 221593) ((|Stream| . |LinearAggregate|) 221577) ((|Stream| . |EltableAggregate|) 221549) ((|Stream| . |Eltable|) 221478) ((|Stream| . |IndexedAggregate|) 221450) ((|Stream| . |ConvertibleTo|) 221386) ((|Stream| . |HomogeneousAggregate|) 221370) ((|Stream| . |SetCategory|) 221340) ((|Stream| . |Functorial|) 221324) ((|Stream| . |InnerEvalable|) 221243) ((|Stream| . |Evalable|) 221167) ((|Stream| . |CoercibleTo|) 221069) ((|Stream| . |BasicType|) 221007) ((|Stream| . |Type|) T) ((|Stream| . |Join|) T) ((|Stream| . |Aggregate|) T) ((|Stream| . |Collection|) 220991) ((|Stream| . |UnaryRecursiveAggregate|) 220975) ((|Stream| . |RecursiveAggregate|) 220959) ((|Stream| . |StreamAggregate|) 220943) ((|Stream| . |CoercibleFrom|) 220918) ((|Stream| . |ShallowlyMutableAggregate|) 220902) ((|StepAst| . |SpadSyntaxCategory|) T) ((|StepAst| . |HomotopicTo|) 220880) ((|StepAst| . |CoercibleTo|) 220835) ((|StepAst| . |CoercibleFrom|) 220813) ((|StepAst| . |SetCategory|) T) ((|StepAst| . |Type|) T) ((|StepAst| . |Join|) T) ((|StepAst| . |BasicType|) T) ((|StepAst| . |AbstractSyntaxCategory|) T) ((|SparseTable| . |TableAggregate|) 220792) ((|SparseTable| . |Dictionary|) 220734) ((|SparseTable| . |BagAggregate|) 220676) ((|SparseTable| . |ShallowlyMutableAggregate|) 220605) ((|SparseTable| . |Collection|) 220547) ((|SparseTable| . |ConvertibleTo|) NIL) ((|SparseTable| . |DictionaryOperations|) 220489) ((|SparseTable| . |IndexedAggregate|) 220468) ((|SparseTable| . |Evalable|) 220228) ((|SparseTable| . |InnerEvalable|) 219976) ((|SparseTable| . |Functorial|) 219905) ((|SparseTable| . |HomogeneousAggregate|) 219834) ((|SparseTable| . |Eltable|) 219813) ((|SparseTable| . |EltableAggregate|) 219792) ((|SparseTable| . |KeyedDictionary|) 219771) ((|SparseTable| . |SetCategory|) T) ((|SparseTable| . |CoercibleTo|) 219745) ((|SparseTable| . |BasicType|) T) ((|SparseTable| . |Type|) T) ((|SparseTable| . |Join|) T) ((|SparseTable| . |Aggregate|) T) ((|SparseTable| . |FiniteAggregate|) 219687) ((|Stack| . |StackAggregate|) 219671) ((|Stack| . |FiniteAggregate|) 219655) ((|Stack| . |HomogeneousAggregate|) 219639) ((|Stack| . |SetCategory|) 219609) ((|Stack| . |Functorial|) 219593) ((|Stack| . |InnerEvalable|) 219512) ((|Stack| . |Evalable|) 219436) ((|Stack| . |CoercibleTo|) 219338) ((|Stack| . |BasicType|) 219276) ((|Stack| . |Type|) T) ((|Stack| . |Join|) T) ((|Stack| . |Aggregate|) T) ((|Stack| . |ShallowlyMutableAggregate|) 219260) ((|Stack| . |BagAggregate|) 219244) ((|SquareFreeRegularTriangularSet| . |SquareFreeRegularTriangularSetCategory|) 219213) ((|SquareFreeRegularTriangularSet| . |TriangularSetCategory|) 219182) ((|SquareFreeRegularTriangularSet| . |ShallowlyMutableAggregate|) 219166) ((|SquareFreeRegularTriangularSet| . |CoercibleTo|) 219118) ((|SquareFreeRegularTriangularSet| . |Collection|) 219102) ((|SquareFreeRegularTriangularSet| . |Aggregate|) T) ((|SquareFreeRegularTriangularSet| . |Join|) T) ((|SquareFreeRegularTriangularSet| . |Type|) T) ((|SquareFreeRegularTriangularSet| . |BasicType|) T) ((|SquareFreeRegularTriangularSet| . |Evalable|) 219026) ((|SquareFreeRegularTriangularSet| . |InnerEvalable|) 218945) ((|SquareFreeRegularTriangularSet| . |Functorial|) 218929) ((|SquareFreeRegularTriangularSet| . |SetCategory|) T) ((|SquareFreeRegularTriangularSet| . |HomogeneousAggregate|) 218913) ((|SquareFreeRegularTriangularSet| . |ConvertibleTo|) 218849) ((|SquareFreeRegularTriangularSet| . |FiniteAggregate|) 218833) ((|SquareFreeRegularTriangularSet| . |PolynomialSetCategory|) 218802) ((|SquareFreeRegularTriangularSet| . |RegularTriangularSetCategory|) 218771) ((|SquareMatrix| . |SquareMatrixCategory|) 218715) ((|SquareMatrix| . |FiniteAggregate|) 218699) ((|SquareMatrix| . |Aggregate|) T) ((|SquareMatrix| . |Evalable|) 218623) ((|SquareMatrix| . |InnerEvalable|) 218542) ((|SquareMatrix| . |Functorial|) 218526) ((|SquareMatrix| . |HomogeneousAggregate|) 218510) ((|SquareMatrix| . |RectangularMatrixCategory|) 218449) ((|SquareMatrix| . |RetractableTo|) 218293) ((|SquareMatrix| . |CoercibleFrom|) 218174) ((|SquareMatrix| . |FullyRetractableTo|) 218158) ((|SquareMatrix| . |LinearlyExplicitRingOver|) 218074) ((|SquareMatrix| . |LeftModule|) 217980) ((|SquareMatrix| . |FullyLinearlyExplicitRingOver|) 217964) ((|SquareMatrix| . |DifferentialRing|) 217929) ((|SquareMatrix| . |DifferentialDomain|) 217848) ((|SquareMatrix| . |DifferentialSpace|) 217773) ((|SquareMatrix| . |DifferentialSpaceExtension|) 217757) ((|SquareMatrix| . |PartialDifferentialDomain|) 217629) ((|SquareMatrix| . |PartialDifferentialSpace|) 217503) ((|SquareMatrix| . |PartialDifferentialRing|) 217435) ((|SquareMatrix| . |DifferentialExtension|) 217419) ((|SquareMatrix| . |Module|) 217326) ((|SquareMatrix| . |LinearSet|) 217233) ((|SquareMatrix| . |LeftLinearSet|) 217187) ((|SquareMatrix| . |CancellationAbelianMonoid|) T) ((|SquareMatrix| . |AbelianSemiGroup|) T) ((|SquareMatrix| . |BasicType|) T) ((|SquareMatrix| . |Join|) T) ((|SquareMatrix| . |Type|) T) ((|SquareMatrix| . |CoercibleTo|) 217137) ((|SquareMatrix| . |SetCategory|) T) ((|SquareMatrix| . |AbelianMonoid|) T) ((|SquareMatrix| . |AbelianGroup|) T) ((|SquareMatrix| . |RightModule|) 217121) ((|SquareMatrix| . |RightLinearSet|) 217105) ((|SquareMatrix| . |BiModule|) 217084) ((|SquareMatrix| . |Ring|) T) ((|SquareMatrix| . |Monoid|) T) ((|SquareMatrix| . |SemiRing|) T) ((|SquareMatrix| . |SemiGroup|) T) ((|SquareMatrix| . |Rng|) T) ((|SquareMatrix| . |Algebra|) 217029) ((|SquareMatrix| . |ConvertibleTo|) 216970) ((|SplittingTree| . |RecursiveAggregate|) 216931) ((|SplittingTree| . |Aggregate|) T) ((|SplittingTree| . |Join|) T) ((|SplittingTree| . |Type|) T) ((|SplittingTree| . |BasicType|) T) ((|SplittingTree| . |CoercibleTo|) 216905) ((|SplittingTree| . |Evalable|) 216795) ((|SplittingTree| . |InnerEvalable|) 216678) ((|SplittingTree| . |Functorial|) 216639) ((|SplittingTree| . |SetCategory|) T) ((|SplittingTree| . |HomogeneousAggregate|) 216600) ((|SplittingTree| . |FiniteAggregate|) 216561) ((|SplittingTree| . |ShallowlyMutableAggregate|) 216522) ((|SplittingNode| . |SetCategory|) T) ((|SplittingNode| . |CoercibleTo|) 216496) ((|SplittingNode| . |Type|) T) ((|SplittingNode| . |Join|) T) ((|SplittingNode| . |BasicType|) T) ((|SpadAst| . |SpadAstExports|) T) ((|SpadAst| . |UnionType|) T) ((|SpadAst| . |AbstractSyntaxCategory|) T) ((|SpadAst| . |BasicType|) T) ((|SpadAst| . |Join|) T) ((|SpadAst| . |Type|) T) ((|SpadAst| . |CoercibleTo|) 216451) ((|SpadAst| . |SetCategory|) T) ((|SpadAst| . |CoercibleFrom|) 216429) ((|SpadAst| . |HomotopicTo|) 216407) ((|SpadAst| . |SpadSyntaxCategory|) T) ((|ThreeSpace| . |ThreeSpaceCategory|) 216391) ((|ThreeSpace| . |BasicType|) T) ((|ThreeSpace| . |Join|) T) ((|ThreeSpace| . |Type|) T) ((|ThreeSpace| . |CoercibleTo|) 216365) ((|ThreeSpace| . |SetCategory|) T) ((|SparseMultivariateTaylorSeries| . |MultivariateTaylorSeriesCategory|) 216344) ((|SparseMultivariateTaylorSeries| . |ArcHyperbolicFunctionCategory|) 216293) ((|SparseMultivariateTaylorSeries| . |ArcTrigonometricFunctionCategory|) 216242) ((|SparseMultivariateTaylorSeries| . |ElementaryFunctionCategory|) 216191) ((|SparseMultivariateTaylorSeries| . |HyperbolicFunctionCategory|) 216140) ((|SparseMultivariateTaylorSeries| . |TrigonometricFunctionCategory|) 216089) ((|SparseMultivariateTaylorSeries| . |TranscendentalFunctionCategory|) 216038) ((|SparseMultivariateTaylorSeries| . |RadicalCategory|) 215987) ((|SparseMultivariateTaylorSeries| . |AbelianMonoidRing|) 215945) ((|SparseMultivariateTaylorSeries| . |Algebra|) 215789) ((|SparseMultivariateTaylorSeries| . |LinearSet|) 215633) ((|SparseMultivariateTaylorSeries| . |Module|) 215477) ((|SparseMultivariateTaylorSeries| . |CoercibleFrom|) 215301) ((|SparseMultivariateTaylorSeries| . |EntireRing|) 215268) ((|SparseMultivariateTaylorSeries| . |IntegralDomain|) 215235) ((|SparseMultivariateTaylorSeries| . |Functorial|) 215219) ((|SparseMultivariateTaylorSeries| . |BiModule|) 215038) ((|SparseMultivariateTaylorSeries| . |RightLinearSet|) 214871) ((|SparseMultivariateTaylorSeries| . |RightModule|) 214704) ((|SparseMultivariateTaylorSeries| . |CommutativeRing|) 214633) ((|SparseMultivariateTaylorSeries| . |CharacteristicZero|) 214596) ((|SparseMultivariateTaylorSeries| . |CharacteristicNonZero|) 214556) ((|SparseMultivariateTaylorSeries| . |LeftModule|) 214453) ((|SparseMultivariateTaylorSeries| . |LeftLinearSet|) 214330) ((|SparseMultivariateTaylorSeries| . |PowerSeriesCategory|) 214283) ((|SparseMultivariateTaylorSeries| . |PartialDifferentialSpace|) 214267) ((|SparseMultivariateTaylorSeries| . |Type|) T) ((|SparseMultivariateTaylorSeries| . |Join|) T) ((|SparseMultivariateTaylorSeries| . |PartialDifferentialDomain|) 214249) ((|SparseMultivariateTaylorSeries| . |Ring|) T) ((|SparseMultivariateTaylorSeries| . |Monoid|) T) ((|SparseMultivariateTaylorSeries| . |SemiRing|) T) ((|SparseMultivariateTaylorSeries| . |SemiGroup|) T) ((|SparseMultivariateTaylorSeries| . |Rng|) T) ((|SparseMultivariateTaylorSeries| . |AbelianGroup|) T) ((|SparseMultivariateTaylorSeries| . |AbelianMonoid|) T) ((|SparseMultivariateTaylorSeries| . |SetCategory|) T) ((|SparseMultivariateTaylorSeries| . |CoercibleTo|) 214223) ((|SparseMultivariateTaylorSeries| . |BasicType|) T) ((|SparseMultivariateTaylorSeries| . |AbelianSemiGroup|) T) ((|SparseMultivariateTaylorSeries| . |CancellationAbelianMonoid|) T) ((|SparseMultivariateTaylorSeries| . |PartialDifferentialRing|) 214207) ((|SparseMultivariateTaylorSeries| . |InnerEvalable|) 214177) ((|SparseMultivariateTaylorSeries| . |Evalable|) 214164) ((|SparseMultivariatePolynomial| . |PolynomialCategory|) 214117) ((|SparseMultivariatePolynomial| . |CoercibleFrom|) 213813) ((|SparseMultivariatePolynomial| . |RetractableTo|) 213644) ((|SparseMultivariatePolynomial| . |UniqueFactorizationDomain|) 213594) ((|SparseMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 213544) ((|SparseMultivariatePolynomial| . |PatternMatchable|) 213323) ((|SparseMultivariatePolynomial| . |PartialDifferentialSpace|) 213307) ((|SparseMultivariatePolynomial| . |PartialDifferentialDomain|) 213289) ((|SparseMultivariatePolynomial| . |PartialDifferentialRing|) 213273) ((|SparseMultivariatePolynomial| . |InnerEvalable|) 213225) ((|SparseMultivariatePolynomial| . |GcdDomain|) 213143) ((|SparseMultivariatePolynomial| . |LinearlyExplicitRingOver|) 213059) ((|SparseMultivariatePolynomial| . |LeftModule|) 212888) ((|SparseMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 212872) ((|SparseMultivariatePolynomial| . |AbelianMonoidRing|) 212830) ((|SparseMultivariatePolynomial| . |Algebra|) 212593) ((|SparseMultivariatePolynomial| . |LinearSet|) 212356) ((|SparseMultivariatePolynomial| . |Module|) 212119) ((|SparseMultivariatePolynomial| . |EntireRing|) 212005) ((|SparseMultivariatePolynomial| . |IntegralDomain|) 211891) ((|SparseMultivariatePolynomial| . |Functorial|) 211875) ((|SparseMultivariatePolynomial| . |BiModule|) 211618) ((|SparseMultivariatePolynomial| . |RightLinearSet|) 211375) ((|SparseMultivariatePolynomial| . |RightModule|) 211132) ((|SparseMultivariatePolynomial| . |CommutativeRing|) 210985) ((|SparseMultivariatePolynomial| . |CharacteristicZero|) 210948) ((|SparseMultivariatePolynomial| . |CharacteristicNonZero|) 210908) ((|SparseMultivariatePolynomial| . |LeftLinearSet|) 210785) ((|SparseMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|SparseMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|SparseMultivariatePolynomial| . |BasicType|) T) ((|SparseMultivariatePolynomial| . |Join|) T) ((|SparseMultivariatePolynomial| . |Type|) T) ((|SparseMultivariatePolynomial| . |CoercibleTo|) 210759) ((|SparseMultivariatePolynomial| . |SetCategory|) T) ((|SparseMultivariatePolynomial| . |AbelianMonoid|) T) ((|SparseMultivariatePolynomial| . |AbelianGroup|) T) ((|SparseMultivariatePolynomial| . |Ring|) T) ((|SparseMultivariatePolynomial| . |Monoid|) T) ((|SparseMultivariatePolynomial| . |SemiRing|) T) ((|SparseMultivariatePolynomial| . |SemiGroup|) T) ((|SparseMultivariatePolynomial| . |Rng|) T) ((|SparseMultivariatePolynomial| . |FullyRetractableTo|) 210743) ((|SparseMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 210701) ((|SparseMultivariatePolynomial| . |Evalable|) 210688) ((|SparseMultivariatePolynomial| . |ConvertibleTo|) 210295) ((|SingleInteger| . |IntegerNumberSystem|) T) ((|SingleInteger| . |UniqueFactorizationDomain|) T) ((|SingleInteger| . |StepThrough|) T) ((|SingleInteger| . |RetractableTo|) 210272) ((|SingleInteger| . |ConvertibleTo|) 210158) ((|SingleInteger| . |RealConstant|) T) ((|SingleInteger| . |PatternMatchable|) 210135) ((|SingleInteger| . |OrderedRing|) T) ((|SingleInteger| . |OrderedCancellationAbelianMonoid|) T) ((|SingleInteger| . |OrderedAbelianSemiGroup|) T) ((|SingleInteger| . |OrderedType|) T) ((|SingleInteger| . |OrderedSet|) T) ((|SingleInteger| . |OrderedAbelianMonoid|) T) ((|SingleInteger| . |OrderedAbelianGroup|) T) ((|SingleInteger| . |OrderedIntegralDomain|) T) ((|SingleInteger| . |LeftModule|) 210102) ((|SingleInteger| . |LinearlyExplicitRingOver|) 210079) ((|SingleInteger| . |PrincipalIdealDomain|) T) ((|SingleInteger| . |IntegralDomain|) T) ((|SingleInteger| . |EntireRing|) T) ((|SingleInteger| . |CommutativeRing|) T) ((|SingleInteger| . |CoercibleFrom|) 210046) ((|SingleInteger| . |Module|) 210033) ((|SingleInteger| . |LinearSet|) 210020) ((|SingleInteger| . |RightModule|) 210007) ((|SingleInteger| . |RightLinearSet|) 209994) ((|SingleInteger| . |BiModule|) 209979) ((|SingleInteger| . |Algebra|) 209966) ((|SingleInteger| . |GcdDomain|) T) ((|SingleInteger| . |EuclideanDomain|) T) ((|SingleInteger| . |DifferentialSpace|) T) ((|SingleInteger| . |DifferentialDomain|) 209953) ((|SingleInteger| . |DifferentialRing|) T) ((|SingleInteger| . |CombinatorialFunctionCategory|) T) ((|SingleInteger| . |Ring|) T) ((|SingleInteger| . |Monoid|) T) ((|SingleInteger| . |SemiRing|) T) ((|SingleInteger| . |SemiGroup|) T) ((|SingleInteger| . |Rng|) T) ((|SingleInteger| . |AbelianGroup|) T) ((|SingleInteger| . |LeftLinearSet|) 209920) ((|SingleInteger| . |AbelianMonoid|) T) ((|SingleInteger| . |SetCategory|) T) ((|SingleInteger| . |CoercibleTo|) 209894) ((|SingleInteger| . |Type|) T) ((|SingleInteger| . |Join|) T) ((|SingleInteger| . |BasicType|) T) ((|SingleInteger| . |AbelianSemiGroup|) T) ((|SingleInteger| . |CancellationAbelianMonoid|) T) ((|SingleInteger| . |CharacteristicZero|) T) ((|SingleInteger| . |OrderedFinite|) T) ((|SingleInteger| . |Finite|) T) ((|SingleInteger| . |BooleanLogic|) T) ((|SingleInteger| . |Logic|) T) ((|SignatureAst| . |SpadSyntaxCategory|) T) ((|SignatureAst| . |HomotopicTo|) 209872) ((|SignatureAst| . |CoercibleTo|) 209827) ((|SignatureAst| . |CoercibleFrom|) 209805) ((|SignatureAst| . |SetCategory|) T) ((|SignatureAst| . |Type|) T) ((|SignatureAst| . |Join|) T) ((|SignatureAst| . |BasicType|) T) ((|SignatureAst| . |AbstractSyntaxCategory|) T) ((|Signature| . |SetCategory|) T) ((|Signature| . |CoercibleTo|) 209779) ((|Signature| . |Type|) T) ((|Signature| . |Join|) T) ((|Signature| . |BasicType|) T) ((|SplitHomogeneousDirectProduct| . |DirectProductCategory|) 209758) ((|SplitHomogeneousDirectProduct| . |VectorSpace|) 209725) ((|SplitHomogeneousDirectProduct| . |OrderedCancellationAbelianMonoid|) 209683) ((|SplitHomogeneousDirectProduct| . |OrderedAbelianSemiGroup|) 209641) ((|SplitHomogeneousDirectProduct| . |OrderedType|) 209566) ((|SplitHomogeneousDirectProduct| . |OrderedSet|) 209491) ((|SplitHomogeneousDirectProduct| . |OrderedAbelianMonoid|) 209449) ((|SplitHomogeneousDirectProduct| . |OrderedAbelianMonoidSup|) 209407) ((|SplitHomogeneousDirectProduct| . |Module|) 209336) ((|SplitHomogeneousDirectProduct| . |LinearSet|) 209241) ((|SplitHomogeneousDirectProduct| . |EltableAggregate|) 209213) ((|SplitHomogeneousDirectProduct| . |Eltable|) 209185) ((|SplitHomogeneousDirectProduct| . |IndexedAggregate|) 209157) ((|SplitHomogeneousDirectProduct| . |RetractableTo|) 208908) ((|SplitHomogeneousDirectProduct| . |CoercibleFrom|) 208632) ((|SplitHomogeneousDirectProduct| . |FullyRetractableTo|) 208593) ((|SplitHomogeneousDirectProduct| . |LinearlyExplicitRingOver|) 208465) ((|SplitHomogeneousDirectProduct| . |LeftModule|) 208250) ((|SplitHomogeneousDirectProduct| . |FullyLinearlyExplicitRingOver|) 208218) ((|SplitHomogeneousDirectProduct| . |HomogeneousAggregate|) 208202) ((|SplitHomogeneousDirectProduct| . |Functorial|) 208186) ((|SplitHomogeneousDirectProduct| . |InnerEvalable|) 208105) ((|SplitHomogeneousDirectProduct| . |Evalable|) 208029) ((|SplitHomogeneousDirectProduct| . |Aggregate|) T) ((|SplitHomogeneousDirectProduct| . |FiniteAggregate|) 208013) ((|SplitHomogeneousDirectProduct| . |Finite|) 207988) ((|SplitHomogeneousDirectProduct| . |DifferentialRing|) 207925) ((|SplitHomogeneousDirectProduct| . |LeftLinearSet|) 207655) ((|SplitHomogeneousDirectProduct| . |Rng|) 207632) ((|SplitHomogeneousDirectProduct| . |SemiGroup|) 207609) ((|SplitHomogeneousDirectProduct| . |SemiRing|) 207586) ((|SplitHomogeneousDirectProduct| . |Monoid|) 207563) ((|SplitHomogeneousDirectProduct| . |Ring|) 207540) ((|SplitHomogeneousDirectProduct| . |DifferentialDomain|) 207403) ((|SplitHomogeneousDirectProduct| . |DifferentialSpace|) 207272) ((|SplitHomogeneousDirectProduct| . |DifferentialSpaceExtension|) 207240) ((|SplitHomogeneousDirectProduct| . |PartialDifferentialDomain|) 207056) ((|SplitHomogeneousDirectProduct| . |PartialDifferentialSpace|) 206874) ((|SplitHomogeneousDirectProduct| . |PartialDifferentialRing|) 206778) ((|SplitHomogeneousDirectProduct| . |DifferentialExtension|) 206746) ((|SplitHomogeneousDirectProduct| . |CoercibleTo|) 206291) ((|SplitHomogeneousDirectProduct| . |RightModule|) 206198) ((|SplitHomogeneousDirectProduct| . |RightLinearSet|) 206081) ((|SplitHomogeneousDirectProduct| . |BiModule|) 205983) ((|SplitHomogeneousDirectProduct| . |CancellationAbelianMonoid|) 205785) ((|SplitHomogeneousDirectProduct| . |AbelianSemiGroup|) 205522) ((|SplitHomogeneousDirectProduct| . |BasicType|) 205127) ((|SplitHomogeneousDirectProduct| . |Join|) T) ((|SplitHomogeneousDirectProduct| . |Type|) T) ((|SplitHomogeneousDirectProduct| . |SetCategory|) 204759) ((|SplitHomogeneousDirectProduct| . |AbelianMonoid|) 204530) ((|SplitHomogeneousDirectProduct| . |AbelianGroup|) 204416) ((|SemiGroupOperation| . |SemiGroupOperatorCategory|) 204400) ((|SemiGroupOperation| . |MappingCategory|) 204374) ((|SemiGroupOperation| . |Type|) T) ((|SemiGroupOperation| . |BinaryOperatorCategory|) 204358) ((|SemiGroupOperation| . |SetCategory|) T) ((|SemiGroupOperation| . |CoercibleTo|) 204332) ((|SemiGroupOperation| . |Join|) T) ((|SemiGroupOperation| . |BasicType|) T) ((|SExpressionOf| . |SExpressionCategory|) 204296) ((|SExpressionOf| . |BasicType|) T) ((|SExpressionOf| . |CoercibleTo|) 204270) ((|SExpressionOf| . |SetCategory|) T) ((|SExpressionOf| . |Eltable|) 204214) ((|SExpressionOf| . |Type|) T) ((|SExpressionOf| . |Join|) T) ((|SExpressionOf| . |ConvertibleFrom|) 204127) ((|SExpression| . |SExpressionCategory|) 204051) ((|SExpression| . |BasicType|) T) ((|SExpression| . |CoercibleTo|) 204025) ((|SExpression| . |SetCategory|) T) ((|SExpression| . |Eltable|) 203969) ((|SExpression| . |Type|) T) ((|SExpression| . |Join|) T) ((|SExpression| . |ConvertibleFrom|) 203842) ((|SetOfMIntegersInOneToN| . |Finite|) T) ((|SetOfMIntegersInOneToN| . |BasicType|) T) ((|SetOfMIntegersInOneToN| . |Join|) T) ((|SetOfMIntegersInOneToN| . |Type|) T) ((|SetOfMIntegersInOneToN| . |CoercibleTo|) 203816) ((|SetOfMIntegersInOneToN| . |SetCategory|) T) ((|Set| . |FiniteSetAggregate|) 203800) ((|Set| . |SetAggregate|) 203784) ((|Set| . |FiniteAggregate|) 203768) ((|Set| . |Finite|) 203743) ((|Set| . |DictionaryOperations|) 203727) ((|Set| . |ConvertibleTo|) 203663) ((|Set| . |Collection|) 203647) ((|Set| . |HomogeneousAggregate|) 203631) ((|Set| . |SetCategory|) T) ((|Set| . |Functorial|) 203615) ((|Set| . |InnerEvalable|) 203534) ((|Set| . |Evalable|) 203458) ((|Set| . |CoercibleTo|) 203432) ((|Set| . |BasicType|) T) ((|Set| . |Type|) T) ((|Set| . |Join|) T) ((|Set| . |Aggregate|) T) ((|Set| . |ShallowlyMutableAggregate|) 203416) ((|Set| . |BagAggregate|) 203400) ((|Set| . |Dictionary|) 203384) ((|SequenceAst| . |SpadSyntaxCategory|) T) ((|SequenceAst| . |HomotopicTo|) 203362) ((|SequenceAst| . |CoercibleTo|) 203317) ((|SequenceAst| . |CoercibleFrom|) 203295) ((|SequenceAst| . |SetCategory|) T) ((|SequenceAst| . |Type|) T) ((|SequenceAst| . |Join|) T) ((|SequenceAst| . |BasicType|) T) ((|SequenceAst| . |AbstractSyntaxCategory|) T) ((|SegmentBinding| . |Type|) T) ((|SegmentBinding| . |Join|) T) ((|SegmentBinding| . |SetCategory|) 203253) ((|SegmentBinding| . |CoercibleTo|) 203192) ((|SegmentBinding| . |BasicType|) 203150) ((|SegmentAst| . |SpadSyntaxCategory|) T) ((|SegmentAst| . |HomotopicTo|) 203128) ((|SegmentAst| . |CoercibleTo|) 203083) ((|SegmentAst| . |CoercibleFrom|) 203061) ((|SegmentAst| . |SetCategory|) T) ((|SegmentAst| . |Type|) T) ((|SegmentAst| . |Join|) T) ((|SegmentAst| . |BasicType|) T) ((|SegmentAst| . |AbstractSyntaxCategory|) T) ((|Segment| . |SegmentCategory|) 203045) ((|Segment| . |ConvertibleFrom|) 203029) ((|Segment| . |SetCategory|) 202999) ((|Segment| . |CoercibleTo|) 202950) ((|Segment| . |Type|) 202920) ((|Segment| . |Join|) 202890) ((|Segment| . |BasicType|) 202860) ((|Segment| . |SegmentExpansionCategory|) 202807) ((|SequentialDifferentialVariable| . |DifferentialVariableCategory|) 202791) ((|SequentialDifferentialVariable| . |CoercibleFrom|) 202775) ((|SequentialDifferentialVariable| . |RetractableTo|) 202759) ((|SequentialDifferentialVariable| . |OrderedType|) T) ((|SequentialDifferentialVariable| . |BasicType|) T) ((|SequentialDifferentialVariable| . |SetCategory|) T) ((|SequentialDifferentialVariable| . |CoercibleTo|) 202733) ((|SequentialDifferentialVariable| . |OrderedSet|) T) ((|SequentialDifferentialVariable| . |DifferentialDomain|) 202720) ((|SequentialDifferentialVariable| . |Join|) T) ((|SequentialDifferentialVariable| . |Type|) T) ((|SequentialDifferentialVariable| . |DifferentialSpace|) T) ((|SequentialDifferentialPolynomial| . |DifferentialPolynomialCategory|) 202623) ((|SequentialDifferentialPolynomial| . |CoercibleFrom|) 202213) ((|SequentialDifferentialPolynomial| . |RetractableTo|) 201938) ((|SequentialDifferentialPolynomial| . |ConvertibleTo|) NIL) ((|SequentialDifferentialPolynomial| . |FiniteAbelianMonoidRing|) 201855) ((|SequentialDifferentialPolynomial| . |FullyRetractableTo|) 201839) ((|SequentialDifferentialPolynomial| . |Algebra|) 201602) ((|SequentialDifferentialPolynomial| . |BiModule|) 201345) ((|SequentialDifferentialPolynomial| . |RightLinearSet|) 201102) ((|SequentialDifferentialPolynomial| . |RightModule|) 200859) ((|SequentialDifferentialPolynomial| . |LeftLinearSet|) 200736) ((|SequentialDifferentialPolynomial| . |LeftModule|) 200565) ((|SequentialDifferentialPolynomial| . |LinearSet|) 200328) ((|SequentialDifferentialPolynomial| . |Module|) 200091) ((|SequentialDifferentialPolynomial| . |CharacteristicNonZero|) 200051) ((|SequentialDifferentialPolynomial| . |CharacteristicZero|) 200014) ((|SequentialDifferentialPolynomial| . |CommutativeRing|) 199867) ((|SequentialDifferentialPolynomial| . |Functorial|) 199851) ((|SequentialDifferentialPolynomial| . |IntegralDomain|) 199737) ((|SequentialDifferentialPolynomial| . |EntireRing|) 199623) ((|SequentialDifferentialPolynomial| . |AbelianMonoidRing|) 199540) ((|SequentialDifferentialPolynomial| . |FullyLinearlyExplicitRingOver|) 199524) ((|SequentialDifferentialPolynomial| . |LinearlyExplicitRingOver|) 199440) ((|SequentialDifferentialPolynomial| . |GcdDomain|) 199358) ((|SequentialDifferentialPolynomial| . |InnerEvalable|) 199185) ((|SequentialDifferentialPolynomial| . |PartialDifferentialRing|) 199063) ((|SequentialDifferentialPolynomial| . |PartialDifferentialDomain|) 198879) ((|SequentialDifferentialPolynomial| . |PartialDifferentialSpace|) 198699) ((|SequentialDifferentialPolynomial| . |PatternMatchable|) NIL) ((|SequentialDifferentialPolynomial| . |PolynomialFactorizationExplicit|) 198649) ((|SequentialDifferentialPolynomial| . |UniqueFactorizationDomain|) 198599) ((|SequentialDifferentialPolynomial| . |PolynomialCategory|) 198509) ((|SequentialDifferentialPolynomial| . |Evalable|) 198496) ((|SequentialDifferentialPolynomial| . |DifferentialRing|) 198461) ((|SequentialDifferentialPolynomial| . |CancellationAbelianMonoid|) T) ((|SequentialDifferentialPolynomial| . |AbelianSemiGroup|) T) ((|SequentialDifferentialPolynomial| . |BasicType|) T) ((|SequentialDifferentialPolynomial| . |CoercibleTo|) 198435) ((|SequentialDifferentialPolynomial| . |SetCategory|) T) ((|SequentialDifferentialPolynomial| . |AbelianMonoid|) T) ((|SequentialDifferentialPolynomial| . |AbelianGroup|) T) ((|SequentialDifferentialPolynomial| . |Rng|) T) ((|SequentialDifferentialPolynomial| . |SemiGroup|) T) ((|SequentialDifferentialPolynomial| . |SemiRing|) T) ((|SequentialDifferentialPolynomial| . |Monoid|) T) ((|SequentialDifferentialPolynomial| . |Ring|) T) ((|SequentialDifferentialPolynomial| . |DifferentialDomain|) 198354) ((|SequentialDifferentialPolynomial| . |Join|) T) ((|SequentialDifferentialPolynomial| . |Type|) T) ((|SequentialDifferentialPolynomial| . |DifferentialSpace|) 198279) ((|SequentialDifferentialPolynomial| . |DifferentialSpaceExtension|) 198263) ((|SequentialDifferentialPolynomial| . |DifferentialExtension|) 198247) ((|Scope| . |CoercibleTo|) 198221) ((|SingletonAsOrderedSet| . |OrderedSet|) T) ((|SingletonAsOrderedSet| . |CoercibleTo|) 198195) ((|SingletonAsOrderedSet| . |SetCategory|) T) ((|SingletonAsOrderedSet| . |BasicType|) T) ((|SingletonAsOrderedSet| . |Join|) T) ((|SingletonAsOrderedSet| . |Type|) T) ((|SingletonAsOrderedSet| . |OrderedType|) T) ((|SingletonAsOrderedSet| . |ConvertibleTo|) 198173) ((|SimpleAlgebraicExtension| . |MonogenicAlgebra|) 198152) ((|SimpleAlgebraicExtension| . |RetractableTo|) 197996) ((|SimpleAlgebraicExtension| . |FullyRetractableTo|) 197980) ((|SimpleAlgebraicExtension| . |LinearlyExplicitRingOver|) 197896) ((|SimpleAlgebraicExtension| . |LeftModule|) 197710) ((|SimpleAlgebraicExtension| . |FullyLinearlyExplicitRingOver|) 197694) ((|SimpleAlgebraicExtension| . |FiniteRankAlgebra|) 197673) ((|SimpleAlgebraicExtension| . |CharacteristicZero|) 197636) ((|SimpleAlgebraicExtension| . |CoercibleFrom|) 197383) ((|SimpleAlgebraicExtension| . |Module|) 197206) ((|SimpleAlgebraicExtension| . |LinearSet|) 197029) ((|SimpleAlgebraicExtension| . |LeftLinearSet|) 196891) ((|SimpleAlgebraicExtension| . |RightModule|) 196773) ((|SimpleAlgebraicExtension| . |RightLinearSet|) 196655) ((|SimpleAlgebraicExtension| . |BiModule|) 196523) ((|SimpleAlgebraicExtension| . |Algebra|) 196346) ((|SimpleAlgebraicExtension| . |FramedAlgebra|) 196325) ((|SimpleAlgebraicExtension| . |FieldOfPrimeCharacteristic|) 196287) ((|SimpleAlgebraicExtension| . |CharacteristicNonZero|) 196205) ((|SimpleAlgebraicExtension| . |StepThrough|) 196167) ((|SimpleAlgebraicExtension| . |FiniteFieldCategory|) 196129) ((|SimpleAlgebraicExtension| . |Finite|) 196062) ((|SimpleAlgebraicExtension| . |DivisionRing|) 195996) ((|SimpleAlgebraicExtension| . |EntireRing|) 195930) ((|SimpleAlgebraicExtension| . |EuclideanDomain|) 195864) ((|SimpleAlgebraicExtension| . |GcdDomain|) 195798) ((|SimpleAlgebraicExtension| . |IntegralDomain|) 195732) ((|SimpleAlgebraicExtension| . |PrincipalIdealDomain|) 195666) ((|SimpleAlgebraicExtension| . |UniqueFactorizationDomain|) 195600) ((|SimpleAlgebraicExtension| . |Field|) 195534) ((|SimpleAlgebraicExtension| . |DifferentialRing|) 195428) ((|SimpleAlgebraicExtension| . |DifferentialDomain|) 195252) ((|SimpleAlgebraicExtension| . |DifferentialSpace|) 195082) ((|SimpleAlgebraicExtension| . |DifferentialSpaceExtension|) 195049) ((|SimpleAlgebraicExtension| . |PartialDifferentialDomain|) 194863) ((|SimpleAlgebraicExtension| . |PartialDifferentialSpace|) 194679) ((|SimpleAlgebraicExtension| . |PartialDifferentialRing|) 194582) ((|SimpleAlgebraicExtension| . |DifferentialExtension|) 194549) ((|SimpleAlgebraicExtension| . |ConvertibleTo|) 194533) ((|SimpleAlgebraicExtension| . |AbelianGroup|) T) ((|SimpleAlgebraicExtension| . |AbelianMonoid|) T) ((|SimpleAlgebraicExtension| . |SetCategory|) T) ((|SimpleAlgebraicExtension| . |CoercibleTo|) 194507) ((|SimpleAlgebraicExtension| . |Type|) T) ((|SimpleAlgebraicExtension| . |Join|) T) ((|SimpleAlgebraicExtension| . |BasicType|) T) ((|SimpleAlgebraicExtension| . |AbelianSemiGroup|) T) ((|SimpleAlgebraicExtension| . |CancellationAbelianMonoid|) T) ((|SimpleAlgebraicExtension| . |Ring|) T) ((|SimpleAlgebraicExtension| . |Monoid|) T) ((|SimpleAlgebraicExtension| . |SemiRing|) T) ((|SimpleAlgebraicExtension| . |SemiGroup|) T) ((|SimpleAlgebraicExtension| . |Rng|) T) ((|SimpleAlgebraicExtension| . |CommutativeRing|) T) ((|Ruleset| . |SetCategory|) T) ((|Ruleset| . |CoercibleTo|) 194481) ((|Ruleset| . |Type|) T) ((|Ruleset| . |Join|) T) ((|Ruleset| . |BasicType|) T) ((|Ruleset| . |Eltable|) 194460) ((|RuleCalled| . |SetCategory|) T) ((|RuleCalled| . |CoercibleTo|) 194434) ((|RuleCalled| . |Type|) T) ((|RuleCalled| . |Join|) T) ((|RuleCalled| . |BasicType|) T) ((|RewriteRule| . |SetCategory|) T) ((|RewriteRule| . |CoercibleTo|) 194408) ((|RewriteRule| . |Type|) T) ((|RewriteRule| . |Join|) T) ((|RewriteRule| . |BasicType|) T) ((|RewriteRule| . |Eltable|) 194387) ((|RewriteRule| . |RetractableTo|) 194358) ((|RewriteRule| . |CoercibleFrom|) 194329) ((|RuntimeValue| . |Type|) T) ((|RuntimeValue| . |Join|) T) ((|RestrictAst| . |SpadSyntaxCategory|) T) ((|RestrictAst| . |HomotopicTo|) 194307) ((|RestrictAst| . |CoercibleTo|) 194262) ((|RestrictAst| . |CoercibleFrom|) 194240) ((|RestrictAst| . |SetCategory|) T) ((|RestrictAst| . |Type|) T) ((|RestrictAst| . |Join|) T) ((|RestrictAst| . |BasicType|) T) ((|RestrictAst| . |AbstractSyntaxCategory|) T) ((|RepeatAst| . |SpadSyntaxCategory|) T) ((|RepeatAst| . |HomotopicTo|) 194218) ((|RepeatAst| . |CoercibleTo|) 194173) ((|RepeatAst| . |CoercibleFrom|) 194151) ((|RepeatAst| . |SetCategory|) T) ((|RepeatAst| . |Type|) T) ((|RepeatAst| . |Join|) T) ((|RepeatAst| . |BasicType|) T) ((|RepeatAst| . |AbstractSyntaxCategory|) T) ((|RomanNumeral| . |IntegerNumberSystem|) T) ((|RomanNumeral| . |UniqueFactorizationDomain|) T) ((|RomanNumeral| . |StepThrough|) T) ((|RomanNumeral| . |RetractableTo|) 194128) ((|RomanNumeral| . |ConvertibleTo|) 194014) ((|RomanNumeral| . |RealConstant|) T) ((|RomanNumeral| . |PatternMatchable|) 193991) ((|RomanNumeral| . |OrderedRing|) T) ((|RomanNumeral| . |OrderedCancellationAbelianMonoid|) T) ((|RomanNumeral| . |OrderedAbelianSemiGroup|) T) ((|RomanNumeral| . |OrderedType|) T) ((|RomanNumeral| . |OrderedSet|) T) ((|RomanNumeral| . |OrderedAbelianMonoid|) T) ((|RomanNumeral| . |OrderedAbelianGroup|) T) ((|RomanNumeral| . |OrderedIntegralDomain|) T) ((|RomanNumeral| . |LeftModule|) 193958) ((|RomanNumeral| . |LinearlyExplicitRingOver|) 193935) ((|RomanNumeral| . |PrincipalIdealDomain|) T) ((|RomanNumeral| . |IntegralDomain|) T) ((|RomanNumeral| . |EntireRing|) T) ((|RomanNumeral| . |CommutativeRing|) T) ((|RomanNumeral| . |CoercibleFrom|) 193902) ((|RomanNumeral| . |Module|) 193889) ((|RomanNumeral| . |LinearSet|) 193876) ((|RomanNumeral| . |RightModule|) 193863) ((|RomanNumeral| . |RightLinearSet|) 193850) ((|RomanNumeral| . |BiModule|) 193835) ((|RomanNumeral| . |Algebra|) 193822) ((|RomanNumeral| . |GcdDomain|) T) ((|RomanNumeral| . |EuclideanDomain|) T) ((|RomanNumeral| . |DifferentialSpace|) T) ((|RomanNumeral| . |DifferentialDomain|) 193809) ((|RomanNumeral| . |DifferentialRing|) T) ((|RomanNumeral| . |CombinatorialFunctionCategory|) T) ((|RomanNumeral| . |Ring|) T) ((|RomanNumeral| . |Monoid|) T) ((|RomanNumeral| . |SemiRing|) T) ((|RomanNumeral| . |SemiGroup|) T) ((|RomanNumeral| . |Rng|) T) ((|RomanNumeral| . |AbelianGroup|) T) ((|RomanNumeral| . |LeftLinearSet|) 193776) ((|RomanNumeral| . |AbelianMonoid|) T) ((|RomanNumeral| . |SetCategory|) T) ((|RomanNumeral| . |CoercibleTo|) 193750) ((|RomanNumeral| . |Type|) T) ((|RomanNumeral| . |Join|) T) ((|RomanNumeral| . |BasicType|) T) ((|RomanNumeral| . |AbelianSemiGroup|) T) ((|RomanNumeral| . |CancellationAbelianMonoid|) T) ((|RomanNumeral| . |CharacteristicZero|) T) ((|RomanNumeral| . |ConvertibleFrom|) 193728) ((|RightOpenIntervalRootCharacterization| . |RealRootCharacterizationCategory|) 193707) ((|RightOpenIntervalRootCharacterization| . |BasicType|) T) ((|RightOpenIntervalRootCharacterization| . |Join|) T) ((|RightOpenIntervalRootCharacterization| . |Type|) T) ((|RightOpenIntervalRootCharacterization| . |CoercibleTo|) 193681) ((|RightOpenIntervalRootCharacterization| . |SetCategory|) T) ((|RangeBinding| . |Type|) T) ((|RangeBinding| . |Join|) T) ((|RangeBinding| . |SetCategory|) 193651) ((|RangeBinding| . |CoercibleTo|) 193602) ((|RangeBinding| . |BasicType|) 193572) ((|RectangularMatrix| . |RectangularMatrixCategory|) 193490) ((|RectangularMatrix| . |LinearSet|) 193419) ((|RectangularMatrix| . |Module|) 193348) ((|RectangularMatrix| . |HomogeneousAggregate|) 193332) ((|RectangularMatrix| . |Functorial|) 193316) ((|RectangularMatrix| . |InnerEvalable|) 193235) ((|RectangularMatrix| . |Evalable|) 193159) ((|RectangularMatrix| . |Aggregate|) T) ((|RectangularMatrix| . |FiniteAggregate|) 193143) ((|RectangularMatrix| . |LeftModule|) 193127) ((|RectangularMatrix| . |LeftLinearSet|) 193091) ((|RectangularMatrix| . |CancellationAbelianMonoid|) T) ((|RectangularMatrix| . |AbelianSemiGroup|) T) ((|RectangularMatrix| . |BasicType|) T) ((|RectangularMatrix| . |Join|) T) ((|RectangularMatrix| . |Type|) T) ((|RectangularMatrix| . |CoercibleTo|) 193041) ((|RectangularMatrix| . |SetCategory|) T) ((|RectangularMatrix| . |AbelianMonoid|) T) ((|RectangularMatrix| . |AbelianGroup|) T) ((|RectangularMatrix| . |RightModule|) 193025) ((|RectangularMatrix| . |RightLinearSet|) 193009) ((|RectangularMatrix| . |BiModule|) 192988) ((|RectangularMatrix| . |VectorSpace|) 192955) ((|RectangularMatrix| . |ConvertibleTo|) 192896) ((|RegularChain| . |RegularTriangularSetCategory|) 192778) ((|RegularChain| . |PolynomialSetCategory|) 192660) ((|RegularChain| . |FiniteAggregate|) 192579) ((|RegularChain| . |ConvertibleTo|) 192450) ((|RegularChain| . |HomogeneousAggregate|) 192369) ((|RegularChain| . |SetCategory|) T) ((|RegularChain| . |Functorial|) 192288) ((|RegularChain| . |InnerEvalable|) 192045) ((|RegularChain| . |Evalable|) 191809) ((|RegularChain| . |CoercibleTo|) 191696) ((|RegularChain| . |BasicType|) T) ((|RegularChain| . |Type|) T) ((|RegularChain| . |Join|) T) ((|RegularChain| . |Aggregate|) T) ((|RegularChain| . |Collection|) 191615) ((|RegularChain| . |ShallowlyMutableAggregate|) 191534) ((|RegularChain| . |TriangularSetCategory|) 191416) ((|ReturnAst| . |SpadSyntaxCategory|) T) ((|ReturnAst| . |HomotopicTo|) 191394) ((|ReturnAst| . |CoercibleTo|) 191349) ((|ReturnAst| . |CoercibleFrom|) 191327) ((|ReturnAst| . |SetCategory|) T) ((|ReturnAst| . |Type|) T) ((|ReturnAst| . |Join|) T) ((|ReturnAst| . |BasicType|) T) ((|ReturnAst| . |AbstractSyntaxCategory|) T) ((|ResidueRing| . |CommutativeRing|) T) ((|ResidueRing| . |CoercibleFrom|) 191291) ((|ResidueRing| . |Rng|) T) ((|ResidueRing| . |SemiGroup|) T) ((|ResidueRing| . |SemiRing|) T) ((|ResidueRing| . |Monoid|) T) ((|ResidueRing| . |Ring|) T) ((|ResidueRing| . |LeftModule|) 191265) ((|ResidueRing| . |LeftLinearSet|) 191219) ((|ResidueRing| . |CancellationAbelianMonoid|) T) ((|ResidueRing| . |AbelianSemiGroup|) T) ((|ResidueRing| . |BasicType|) T) ((|ResidueRing| . |Join|) T) ((|ResidueRing| . |Type|) T) ((|ResidueRing| . |CoercibleTo|) 191193) ((|ResidueRing| . |SetCategory|) T) ((|ResidueRing| . |AbelianMonoid|) T) ((|ResidueRing| . |AbelianGroup|) T) ((|ResidueRing| . |RightModule|) 191167) ((|ResidueRing| . |RightLinearSet|) 191141) ((|ResidueRing| . |BiModule|) 191108) ((|ResidueRing| . |Algebra|) 191092) ((|ResidueRing| . |LinearSet|) 191076) ((|ResidueRing| . |Module|) 191060) ((|RegularTriangularSet| . |RegularTriangularSetCategory|) 191029) ((|RegularTriangularSet| . |PolynomialSetCategory|) 190998) ((|RegularTriangularSet| . |FiniteAggregate|) 190982) ((|RegularTriangularSet| . |ConvertibleTo|) 190918) ((|RegularTriangularSet| . |HomogeneousAggregate|) 190902) ((|RegularTriangularSet| . |SetCategory|) T) ((|RegularTriangularSet| . |Functorial|) 190886) ((|RegularTriangularSet| . |InnerEvalable|) 190805) ((|RegularTriangularSet| . |Evalable|) 190729) ((|RegularTriangularSet| . |CoercibleTo|) 190681) ((|RegularTriangularSet| . |BasicType|) T) ((|RegularTriangularSet| . |Type|) T) ((|RegularTriangularSet| . |Join|) T) ((|RegularTriangularSet| . |Aggregate|) T) ((|RegularTriangularSet| . |Collection|) 190665) ((|RegularTriangularSet| . |ShallowlyMutableAggregate|) 190649) ((|RegularTriangularSet| . |TriangularSetCategory|) 190618) ((|Reference| . |SetCategory|) T) ((|Reference| . |CoercibleTo|) 190592) ((|Reference| . |Type|) T) ((|Reference| . |Join|) T) ((|Reference| . |BasicType|) T) ((|RealClosure| . |RealClosedField|) T) ((|RealClosure| . |RadicalCategory|) T) ((|RealClosure| . |OrderedAbelianGroup|) T) ((|RealClosure| . |OrderedAbelianMonoid|) T) ((|RealClosure| . |OrderedSet|) T) ((|RealClosure| . |OrderedType|) T) ((|RealClosure| . |OrderedAbelianSemiGroup|) T) ((|RealClosure| . |OrderedCancellationAbelianMonoid|) T) ((|RealClosure| . |OrderedRing|) T) ((|RealClosure| . |RetractableTo|) 190418) ((|RealClosure| . |FullyRetractableTo|) 190369) ((|RealClosure| . |DivisionRing|) T) ((|RealClosure| . |EntireRing|) T) ((|RealClosure| . |EuclideanDomain|) T) ((|RealClosure| . |GcdDomain|) T) ((|RealClosure| . |Algebra|) 190290) ((|RealClosure| . |LinearSet|) 190211) ((|RealClosure| . |Module|) 190132) ((|RealClosure| . |CoercibleFrom|) 190053) ((|RealClosure| . |IntegralDomain|) T) ((|RealClosure| . |PrincipalIdealDomain|) T) ((|RealClosure| . |UniqueFactorizationDomain|) T) ((|RealClosure| . |Field|) T) ((|RealClosure| . |BiModule|) 189953) ((|RealClosure| . |RightLinearSet|) 189874) ((|RealClosure| . |RightModule|) 189795) ((|RealClosure| . |CommutativeRing|) T) ((|RealClosure| . |CharacteristicZero|) T) ((|RealClosure| . |LeftModule|) 189716) ((|RealClosure| . |LeftLinearSet|) 189637) ((|RealClosure| . |CancellationAbelianMonoid|) T) ((|RealClosure| . |AbelianSemiGroup|) T) ((|RealClosure| . |BasicType|) T) ((|RealClosure| . |Join|) T) ((|RealClosure| . |Type|) T) ((|RealClosure| . |CoercibleTo|) 189611) ((|RealClosure| . |SetCategory|) T) ((|RealClosure| . |AbelianMonoid|) T) ((|RealClosure| . |AbelianGroup|) T) ((|RealClosure| . |Ring|) T) ((|RealClosure| . |Monoid|) T) ((|RealClosure| . |SemiRing|) T) ((|RealClosure| . |SemiGroup|) T) ((|RealClosure| . |Rng|) T) ((|ReduceAst| . |SpadSyntaxCategory|) T) ((|ReduceAst| . |HomotopicTo|) 189589) ((|ReduceAst| . |CoercibleTo|) 189544) ((|ReduceAst| . |CoercibleFrom|) 189522) ((|ReduceAst| . |SetCategory|) T) ((|ReduceAst| . |Type|) T) ((|ReduceAst| . |Join|) T) ((|ReduceAst| . |BasicType|) T) ((|ReduceAst| . |AbstractSyntaxCategory|) T) ((|RadixExpansion| . |QuotientFieldCategory|) 189499) ((|RadixExpansion| . |StepThrough|) T) ((|RadixExpansion| . |CoercibleFrom|) 189433) ((|RadixExpansion| . |RetractableTo|) 189377) ((|RadixExpansion| . |ConvertibleTo|) 189278) ((|RadixExpansion| . |RealConstant|) T) ((|RadixExpansion| . |PolynomialFactorizationExplicit|) NIL) ((|RadixExpansion| . |Patternable|) 189255) ((|RadixExpansion| . |OrderedRing|) T) ((|RadixExpansion| . |OrderedCancellationAbelianMonoid|) T) ((|RadixExpansion| . |OrderedAbelianSemiGroup|) T) ((|RadixExpansion| . |OrderedType|) T) ((|RadixExpansion| . |OrderedSet|) T) ((|RadixExpansion| . |OrderedAbelianMonoid|) T) ((|RadixExpansion| . |OrderedAbelianGroup|) T) ((|RadixExpansion| . |OrderedIntegralDomain|) T) ((|RadixExpansion| . |PatternMatchable|) 189232) ((|RadixExpansion| . |FullyPatternMatchable|) 189209) ((|RadixExpansion| . |LinearlyExplicitRingOver|) 189186) ((|RadixExpansion| . |FullyLinearlyExplicitRingOver|) 189163) ((|RadixExpansion| . |Eltable|) NIL) ((|RadixExpansion| . |Evalable|) NIL) ((|RadixExpansion| . |InnerEvalable|) NIL) ((|RadixExpansion| . |Functorial|) 189140) ((|RadixExpansion| . |FullyEvalableOver|) 189117) ((|RadixExpansion| . |DivisionRing|) T) ((|RadixExpansion| . |BiModule|) 189035) ((|RadixExpansion| . |RightLinearSet|) 188969) ((|RadixExpansion| . |RightModule|) 188903) ((|RadixExpansion| . |EntireRing|) T) ((|RadixExpansion| . |Module|) 188837) ((|RadixExpansion| . |LinearSet|) 188771) ((|RadixExpansion| . |LeftModule|) 188705) ((|RadixExpansion| . |LeftLinearSet|) 188639) ((|RadixExpansion| . |Algebra|) 188573) ((|RadixExpansion| . |EuclideanDomain|) T) ((|RadixExpansion| . |GcdDomain|) T) ((|RadixExpansion| . |CommutativeRing|) T) ((|RadixExpansion| . |IntegralDomain|) T) ((|RadixExpansion| . |PrincipalIdealDomain|) T) ((|RadixExpansion| . |UniqueFactorizationDomain|) T) ((|RadixExpansion| . |Field|) T) ((|RadixExpansion| . |DifferentialRing|) T) ((|RadixExpansion| . |DifferentialDomain|) 188560) ((|RadixExpansion| . |DifferentialSpace|) T) ((|RadixExpansion| . |DifferentialSpaceExtension|) 188537) ((|RadixExpansion| . |PartialDifferentialDomain|) NIL) ((|RadixExpansion| . |PartialDifferentialSpace|) NIL) ((|RadixExpansion| . |PartialDifferentialRing|) NIL) ((|RadixExpansion| . |DifferentialExtension|) 188514) ((|RadixExpansion| . |CharacteristicZero|) T) ((|RadixExpansion| . |CharacteristicNonZero|) NIL) ((|RadixExpansion| . |CancellationAbelianMonoid|) T) ((|RadixExpansion| . |AbelianSemiGroup|) T) ((|RadixExpansion| . |BasicType|) T) ((|RadixExpansion| . |Join|) T) ((|RadixExpansion| . |Type|) T) ((|RadixExpansion| . |CoercibleTo|) 188455) ((|RadixExpansion| . |SetCategory|) T) ((|RadixExpansion| . |AbelianMonoid|) T) ((|RadixExpansion| . |AbelianGroup|) T) ((|RadixExpansion| . |Ring|) T) ((|RadixExpansion| . |Monoid|) T) ((|RadixExpansion| . |SemiRing|) T) ((|RadixExpansion| . |SemiGroup|) T) ((|RadixExpansion| . |Rng|) T) ((|RadicalFunctionField| . |FunctionFieldCategory|) 188429) ((|RadicalFunctionField| . |CommutativeRing|) T) ((|RadicalFunctionField| . |CoercibleFrom|) 188337) ((|RadicalFunctionField| . |Rng|) T) ((|RadicalFunctionField| . |SemiGroup|) T) ((|RadicalFunctionField| . |SemiRing|) T) ((|RadicalFunctionField| . |Monoid|) T) ((|RadicalFunctionField| . |Ring|) T) ((|RadicalFunctionField| . |LeftModule|) 188195) ((|RadicalFunctionField| . |LeftLinearSet|) 188103) ((|RadicalFunctionField| . |CancellationAbelianMonoid|) T) ((|RadicalFunctionField| . |AbelianSemiGroup|) T) ((|RadicalFunctionField| . |BasicType|) T) ((|RadicalFunctionField| . |Join|) T) ((|RadicalFunctionField| . |Type|) T) ((|RadicalFunctionField| . |CoercibleTo|) 188077) ((|RadicalFunctionField| . |SetCategory|) T) ((|RadicalFunctionField| . |AbelianMonoid|) T) ((|RadicalFunctionField| . |AbelianGroup|) T) ((|RadicalFunctionField| . |RightModule|) 188005) ((|RadicalFunctionField| . |RightLinearSet|) 187933) ((|RadicalFunctionField| . |BiModule|) 187845) ((|RadicalFunctionField| . |ConvertibleTo|) 187829) ((|RadicalFunctionField| . |DifferentialExtension|) 187800) ((|RadicalFunctionField| . |PartialDifferentialRing|) 187719) ((|RadicalFunctionField| . |PartialDifferentialSpace|) 187567) ((|RadicalFunctionField| . |PartialDifferentialDomain|) 187413) ((|RadicalFunctionField| . |DifferentialSpaceExtension|) 187384) ((|RadicalFunctionField| . |DifferentialSpace|) 187283) ((|RadicalFunctionField| . |DifferentialDomain|) 187176) ((|RadicalFunctionField| . |DifferentialRing|) 187128) ((|RadicalFunctionField| . |Field|) T) ((|RadicalFunctionField| . |UniqueFactorizationDomain|) T) ((|RadicalFunctionField| . |PrincipalIdealDomain|) T) ((|RadicalFunctionField| . |IntegralDomain|) T) ((|RadicalFunctionField| . |Module|) 187056) ((|RadicalFunctionField| . |LinearSet|) 186984) ((|RadicalFunctionField| . |Algebra|) 186912) ((|RadicalFunctionField| . |GcdDomain|) T) ((|RadicalFunctionField| . |EuclideanDomain|) T) ((|RadicalFunctionField| . |EntireRing|) T) ((|RadicalFunctionField| . |DivisionRing|) T) ((|RadicalFunctionField| . |Finite|) NIL) ((|RadicalFunctionField| . |FiniteFieldCategory|) NIL) ((|RadicalFunctionField| . |StepThrough|) NIL) ((|RadicalFunctionField| . |CharacteristicNonZero|) 186859) ((|RadicalFunctionField| . |FieldOfPrimeCharacteristic|) NIL) ((|RadicalFunctionField| . |FramedAlgebra|) 186825) ((|RadicalFunctionField| . |CharacteristicZero|) 186775) ((|RadicalFunctionField| . |FiniteRankAlgebra|) 186741) ((|RadicalFunctionField| . |FullyLinearlyExplicitRingOver|) 186712) ((|RadicalFunctionField| . |LinearlyExplicitRingOver|) 186613) ((|RadicalFunctionField| . |FullyRetractableTo|) 186584) ((|RadicalFunctionField| . |RetractableTo|) 186414) ((|RadicalFunctionField| . |MonogenicAlgebra|) 186380) ((|Queue| . |QueueAggregate|) 186364) ((|Queue| . |FiniteAggregate|) 186348) ((|Queue| . |HomogeneousAggregate|) 186332) ((|Queue| . |SetCategory|) 186302) ((|Queue| . |Functorial|) 186286) ((|Queue| . |InnerEvalable|) 186205) ((|Queue| . |Evalable|) 186129) ((|Queue| . |CoercibleTo|) 186031) ((|Queue| . |BasicType|) 185969) ((|Queue| . |Type|) T) ((|Queue| . |Join|) T) ((|Queue| . |Aggregate|) T) ((|Queue| . |ShallowlyMutableAggregate|) 185953) ((|Queue| . |BagAggregate|) 185937) ((|Quaternion| . |QuaternionCategory|) 185921) ((|Quaternion| . |OrderedType|) 185892) ((|Quaternion| . |OrderedSet|) 185863) ((|Quaternion| . |RetractableTo|) 185707) ((|Quaternion| . |FullyRetractableTo|) 185691) ((|Quaternion| . |LinearlyExplicitRingOver|) 185607) ((|Quaternion| . |LeftModule|) 185463) ((|Quaternion| . |FullyLinearlyExplicitRingOver|) 185447) ((|Quaternion| . |Eltable|) 185400) ((|Quaternion| . |Evalable|) 185359) ((|Quaternion| . |InnerEvalable|) 185248) ((|Quaternion| . |Functorial|) 185232) ((|Quaternion| . |FullyEvalableOver|) 185216) ((|Quaternion| . |Algebra|) 185150) ((|Quaternion| . |BiModule|) 185010) ((|Quaternion| . |RightLinearSet|) 184884) ((|Quaternion| . |RightModule|) 184758) ((|Quaternion| . |LeftLinearSet|) 184662) ((|Quaternion| . |LinearSet|) 184596) ((|Quaternion| . |Module|) 184530) ((|Quaternion| . |CoercibleFrom|) 184383) ((|Quaternion| . |EntireRing|) 184326) ((|Quaternion| . |DivisionRing|) 184302) ((|Quaternion| . |DifferentialRing|) 184267) ((|Quaternion| . |DifferentialDomain|) 184186) ((|Quaternion| . |DifferentialSpace|) 184111) ((|Quaternion| . |DifferentialSpaceExtension|) 184095) ((|Quaternion| . |PartialDifferentialDomain|) 183967) ((|Quaternion| . |PartialDifferentialSpace|) 183841) ((|Quaternion| . |PartialDifferentialRing|) 183773) ((|Quaternion| . |DifferentialExtension|) 183757) ((|Quaternion| . |ConvertibleTo|) 183693) ((|Quaternion| . |CharacteristicZero|) 183656) ((|Quaternion| . |CharacteristicNonZero|) 183616) ((|Quaternion| . |CancellationAbelianMonoid|) T) ((|Quaternion| . |AbelianSemiGroup|) T) ((|Quaternion| . |BasicType|) T) ((|Quaternion| . |Join|) T) ((|Quaternion| . |Type|) T) ((|Quaternion| . |CoercibleTo|) 183590) ((|Quaternion| . |SetCategory|) T) ((|Quaternion| . |AbelianMonoid|) T) ((|Quaternion| . |AbelianGroup|) T) ((|Quaternion| . |Ring|) T) ((|Quaternion| . |Monoid|) T) ((|Quaternion| . |SemiRing|) T) ((|Quaternion| . |SemiGroup|) T) ((|Quaternion| . |Rng|) T) ((|QuasiquoteAst| . |SpadSyntaxCategory|) T) ((|QuasiquoteAst| . |HomotopicTo|) 183568) ((|QuasiquoteAst| . |CoercibleTo|) 183523) ((|QuasiquoteAst| . |CoercibleFrom|) 183501) ((|QuasiquoteAst| . |SetCategory|) T) ((|QuasiquoteAst| . |Type|) T) ((|QuasiquoteAst| . |Join|) T) ((|QuasiquoteAst| . |BasicType|) T) ((|QuasiquoteAst| . |AbstractSyntaxCategory|) T) ((|QuadraticForm| . |AbelianGroup|) T) ((|QuadraticForm| . |LeftLinearSet|) 183478) ((|QuadraticForm| . |AbelianMonoid|) T) ((|QuadraticForm| . |SetCategory|) T) ((|QuadraticForm| . |CoercibleTo|) 183452) ((|QuadraticForm| . |Type|) T) ((|QuadraticForm| . |Join|) T) ((|QuadraticForm| . |BasicType|) T) ((|QuadraticForm| . |AbelianSemiGroup|) T) ((|QuadraticForm| . |CancellationAbelianMonoid|) T) ((|QuadraticForm| . |Eltable|) 183408) ((|QueryEquation| . |CoercibleTo|) 183382) ((|QuasiAlgebraicSet| . |SetCategory|) T) ((|QuasiAlgebraicSet| . |CoercibleTo|) 183356) ((|QuasiAlgebraicSet| . |Type|) T) ((|QuasiAlgebraicSet| . |Join|) T) ((|QuasiAlgebraicSet| . |BasicType|) T) ((|Partition| . |OrderedCancellationAbelianMonoid|) T) ((|Partition| . |OrderedAbelianSemiGroup|) T) ((|Partition| . |OrderedType|) T) ((|Partition| . |OrderedSet|) T) ((|Partition| . |OrderedAbelianMonoid|) T) ((|Partition| . |AbelianMonoid|) T) ((|Partition| . |SetCategory|) T) ((|Partition| . |CoercibleTo|) 183293) ((|Partition| . |Type|) T) ((|Partition| . |Join|) T) ((|Partition| . |BasicType|) T) ((|Partition| . |AbelianSemiGroup|) T) ((|Partition| . |CancellationAbelianMonoid|) T) ((|PretendAst| . |SpadSyntaxCategory|) T) ((|PretendAst| . |HomotopicTo|) 183271) ((|PretendAst| . |CoercibleTo|) 183226) ((|PretendAst| . |CoercibleFrom|) 183204) ((|PretendAst| . |SetCategory|) T) ((|PretendAst| . |Type|) T) ((|PretendAst| . |Join|) T) ((|PretendAst| . |BasicType|) T) ((|PretendAst| . |AbstractSyntaxCategory|) T) ((|PropositionalFormula| . |PropositionalLogic|) T) ((|PropositionalFormula| . |BasicType|) T) ((|PropositionalFormula| . |CoercibleTo|) 183178) ((|PropositionalFormula| . |SetCategory|) T) ((|PropositionalFormula| . |Logic|) T) ((|PropositionalFormula| . |Join|) T) ((|PropositionalFormula| . |Type|) T) ((|PropositionalFormula| . |BooleanLogic|) T) ((|PropositionalFormula| . |CoercibleFrom|) 183162) ((|Property| . |CoercibleTo|) 183136) ((|Product| . |SetCategory|) T) ((|Product| . |CoercibleTo|) 183110) ((|Product| . |Type|) T) ((|Product| . |Join|) T) ((|Product| . |BasicType|) T) ((|Product| . |Finite|) 183055) ((|Product| . |Monoid|) 182943) ((|Product| . |SemiGroup|) 182831) ((|Product| . |AbelianMonoid|) 182511) ((|Product| . |AbelianSemiGroup|) 182191) ((|Product| . |CancellationAbelianMonoid|) 181939) ((|Product| . |Group|) 181886) ((|Product| . |AbelianGroup|) 181819) ((|Product| . |LeftLinearSet|) 181736) ((|Product| . |OrderedAbelianMonoidSup|) 181647) ((|Product| . |OrderedAbelianMonoid|) 181558) ((|Product| . |OrderedSet|) 181402) ((|Product| . |OrderedType|) 181246) ((|Product| . |OrderedAbelianSemiGroup|) 181157) ((|Product| . |OrderedCancellationAbelianMonoid|) 181068) ((|PrimitiveArray| . |OneDimensionalArrayAggregate|) 181052) ((|PrimitiveArray| . |ShallowlyMutableAggregate|) 181036) ((|PrimitiveArray| . |FiniteAggregate|) 181020) ((|PrimitiveArray| . |Aggregate|) T) ((|PrimitiveArray| . |Join|) T) ((|PrimitiveArray| . |Type|) T) ((|PrimitiveArray| . |BasicType|) 180930) ((|PrimitiveArray| . |CoercibleTo|) 180804) ((|PrimitiveArray| . |Evalable|) 180728) ((|PrimitiveArray| . |InnerEvalable|) 180647) ((|PrimitiveArray| . |Functorial|) 180631) ((|PrimitiveArray| . |SetCategory|) 180568) ((|PrimitiveArray| . |HomogeneousAggregate|) 180552) ((|PrimitiveArray| . |LinearAggregate|) 180536) ((|PrimitiveArray| . |EltableAggregate|) 180508) ((|PrimitiveArray| . |Eltable|) 180437) ((|PrimitiveArray| . |IndexedAggregate|) 180409) ((|PrimitiveArray| . |ConvertibleTo|) 180345) ((|PrimitiveArray| . |Collection|) 180329) ((|PrimitiveArray| . |OrderedSet|) 180300) ((|PrimitiveArray| . |OrderedType|) 180271) ((|PrimitiveArray| . |FiniteLinearAggregate|) 180255) ((|PolynomialRing| . |FiniteAbelianMonoidRing|) 180234) ((|PolynomialRing| . |RetractableTo|) 180078) ((|PolynomialRing| . |FullyRetractableTo|) 180062) ((|PolynomialRing| . |Algebra|) 179906) ((|PolynomialRing| . |CoercibleFrom|) 179696) ((|PolynomialRing| . |LeftModule|) 179593) ((|PolynomialRing| . |LeftLinearSet|) 179470) ((|PolynomialRing| . |Rng|) T) ((|PolynomialRing| . |SemiGroup|) T) ((|PolynomialRing| . |SemiRing|) T) ((|PolynomialRing| . |Monoid|) T) ((|PolynomialRing| . |Ring|) T) ((|PolynomialRing| . |BiModule|) 179289) ((|PolynomialRing| . |RightLinearSet|) 179122) ((|PolynomialRing| . |RightModule|) 178955) ((|PolynomialRing| . |AbelianGroup|) T) ((|PolynomialRing| . |AbelianMonoid|) T) ((|PolynomialRing| . |SetCategory|) T) ((|PolynomialRing| . |CoercibleTo|) 178929) ((|PolynomialRing| . |Type|) T) ((|PolynomialRing| . |Join|) T) ((|PolynomialRing| . |BasicType|) T) ((|PolynomialRing| . |AbelianSemiGroup|) T) ((|PolynomialRing| . |CancellationAbelianMonoid|) T) ((|PolynomialRing| . |LinearSet|) 178773) ((|PolynomialRing| . |Module|) 178617) ((|PolynomialRing| . |CharacteristicNonZero|) 178577) ((|PolynomialRing| . |CharacteristicZero|) 178540) ((|PolynomialRing| . |CommutativeRing|) 178469) ((|PolynomialRing| . |Functorial|) 178453) ((|PolynomialRing| . |IntegralDomain|) 178420) ((|PolynomialRing| . |EntireRing|) 178387) ((|PolynomialRing| . |AbelianMonoidRing|) 178366) ((|PortNumber| . |SetCategory|) T) ((|PortNumber| . |CoercibleTo|) 178314) ((|PortNumber| . |Type|) T) ((|PortNumber| . |Join|) T) ((|PortNumber| . |BasicType|) T) ((|Polynomial| . |PolynomialCategory|) 178259) ((|Polynomial| . |CoercibleFrom|) 177949) ((|Polynomial| . |RetractableTo|) 177774) ((|Polynomial| . |UniqueFactorizationDomain|) 177724) ((|Polynomial| . |PolynomialFactorizationExplicit|) 177674) ((|Polynomial| . |PatternMatchable|) 177555) ((|Polynomial| . |PartialDifferentialSpace|) 177533) ((|Polynomial| . |PartialDifferentialDomain|) 177509) ((|Polynomial| . |PartialDifferentialRing|) 177487) ((|Polynomial| . |InnerEvalable|) 177431) ((|Polynomial| . |GcdDomain|) 177349) ((|Polynomial| . |LinearlyExplicitRingOver|) 177265) ((|Polynomial| . |LeftModule|) 177094) ((|Polynomial| . |FullyLinearlyExplicitRingOver|) 177078) ((|Polynomial| . |AbelianMonoidRing|) 177030) ((|Polynomial| . |Algebra|) 176793) ((|Polynomial| . |LinearSet|) 176556) ((|Polynomial| . |Module|) 176319) ((|Polynomial| . |EntireRing|) 176205) ((|Polynomial| . |IntegralDomain|) 176091) ((|Polynomial| . |Functorial|) 176075) ((|Polynomial| . |BiModule|) 175818) ((|Polynomial| . |RightLinearSet|) 175575) ((|Polynomial| . |RightModule|) 175332) ((|Polynomial| . |CommutativeRing|) 175185) ((|Polynomial| . |CharacteristicZero|) 175148) ((|Polynomial| . |CharacteristicNonZero|) 175108) ((|Polynomial| . |LeftLinearSet|) 174985) ((|Polynomial| . |CancellationAbelianMonoid|) T) ((|Polynomial| . |AbelianSemiGroup|) T) ((|Polynomial| . |BasicType|) T) ((|Polynomial| . |Join|) T) ((|Polynomial| . |Type|) T) ((|Polynomial| . |CoercibleTo|) 174959) ((|Polynomial| . |SetCategory|) T) ((|Polynomial| . |AbelianMonoid|) T) ((|Polynomial| . |AbelianGroup|) T) ((|Polynomial| . |Ring|) T) ((|Polynomial| . |Monoid|) T) ((|Polynomial| . |SemiRing|) T) ((|Polynomial| . |SemiGroup|) T) ((|Polynomial| . |Rng|) T) ((|Polynomial| . |FullyRetractableTo|) 174943) ((|Polynomial| . |FiniteAbelianMonoidRing|) 174895) ((|Polynomial| . |Evalable|) 174882) ((|Polynomial| . |ConvertibleTo|) 174660) ((|Point| . |PointCategory|) 174644) ((|Point| . |OneDimensionalArrayAggregate|) 174628) ((|Point| . |ShallowlyMutableAggregate|) 174612) ((|Point| . |FiniteAggregate|) 174596) ((|Point| . |Aggregate|) T) ((|Point| . |Join|) T) ((|Point| . |Type|) T) ((|Point| . |BasicType|) 174506) ((|Point| . |CoercibleTo|) 174380) ((|Point| . |Evalable|) 174304) ((|Point| . |InnerEvalable|) 174223) ((|Point| . |Functorial|) 174207) ((|Point| . |SetCategory|) 174144) ((|Point| . |HomogeneousAggregate|) 174128) ((|Point| . |LinearAggregate|) 174112) ((|Point| . |EltableAggregate|) 174084) ((|Point| . |Eltable|) 174013) ((|Point| . |IndexedAggregate|) 173985) ((|Point| . |ConvertibleTo|) 173921) ((|Point| . |Collection|) 173905) ((|Point| . |OrderedSet|) 173876) ((|Point| . |OrderedType|) 173847) ((|Point| . |FiniteLinearAggregate|) 173831) ((|Point| . |VectorCategory|) 173815) ((|Point| . |ConvertibleFrom|) 173790) ((|Plot3D| . |PlottableSpaceCurveCategory|) T) ((|Plot3D| . |CoercibleTo|) 173764) ((|Plot| . |PlottablePlaneCurveCategory|) T) ((|Plot| . |CoercibleTo|) 173738) ((|PositiveInteger| . |OrderedAbelianSemiGroup|) T) ((|PositiveInteger| . |OrderedType|) T) ((|PositiveInteger| . |OrderedSet|) T) ((|PositiveInteger| . |SetCategory|) T) ((|PositiveInteger| . |CoercibleTo|) 173712) ((|PositiveInteger| . |Type|) T) ((|PositiveInteger| . |Join|) T) ((|PositiveInteger| . |BasicType|) T) ((|PositiveInteger| . |AbelianSemiGroup|) T) ((|PositiveInteger| . |Monoid|) T) ((|PositiveInteger| . |SemiGroup|) T) ((|PartialFraction| . |Field|) T) ((|PartialFraction| . |UniqueFactorizationDomain|) T) ((|PartialFraction| . |PrincipalIdealDomain|) T) ((|PartialFraction| . |IntegralDomain|) T) ((|PartialFraction| . |CommutativeRing|) T) ((|PartialFraction| . |CoercibleFrom|) 173633) ((|PartialFraction| . |Module|) 173574) ((|PartialFraction| . |LinearSet|) 173515) ((|PartialFraction| . |Algebra|) 173456) ((|PartialFraction| . |GcdDomain|) T) ((|PartialFraction| . |EuclideanDomain|) T) ((|PartialFraction| . |LeftModule|) 173397) ((|PartialFraction| . |LeftLinearSet|) 173318) ((|PartialFraction| . |Rng|) T) ((|PartialFraction| . |SemiGroup|) T) ((|PartialFraction| . |SemiRing|) T) ((|PartialFraction| . |Monoid|) T) ((|PartialFraction| . |Ring|) T) ((|PartialFraction| . |BiModule|) 173245) ((|PartialFraction| . |RightLinearSet|) 173186) ((|PartialFraction| . |RightModule|) 173127) ((|PartialFraction| . |AbelianGroup|) T) ((|PartialFraction| . |AbelianMonoid|) T) ((|PartialFraction| . |SetCategory|) T) ((|PartialFraction| . |CoercibleTo|) 173075) ((|PartialFraction| . |Type|) T) ((|PartialFraction| . |Join|) T) ((|PartialFraction| . |BasicType|) T) ((|PartialFraction| . |AbelianSemiGroup|) T) ((|PartialFraction| . |CancellationAbelianMonoid|) T) ((|PartialFraction| . |EntireRing|) T) ((|PartialFraction| . |DivisionRing|) T) ((|PrimeField| . |FiniteFieldCategory|) T) ((|PrimeField| . |StepThrough|) T) ((|PrimeField| . |Finite|) T) ((|PrimeField| . |CharacteristicNonZero|) T) ((|PrimeField| . |Field|) T) ((|PrimeField| . |UniqueFactorizationDomain|) T) ((|PrimeField| . |PrincipalIdealDomain|) T) ((|PrimeField| . |IntegralDomain|) T) ((|PrimeField| . |CommutativeRing|) T) ((|PrimeField| . |CoercibleFrom|) 173009) ((|PrimeField| . |Module|) 172963) ((|PrimeField| . |LinearSet|) 172917) ((|PrimeField| . |Algebra|) 172871) ((|PrimeField| . |GcdDomain|) T) ((|PrimeField| . |EuclideanDomain|) T) ((|PrimeField| . |BiModule|) 172816) ((|PrimeField| . |RightLinearSet|) 172770) ((|PrimeField| . |RightModule|) 172724) ((|PrimeField| . |LeftLinearSet|) 172658) ((|PrimeField| . |LeftModule|) 172612) ((|PrimeField| . |EntireRing|) T) ((|PrimeField| . |DivisionRing|) T) ((|PrimeField| . |FieldOfPrimeCharacteristic|) T) ((|PrimeField| . |DifferentialSpace|) T) ((|PrimeField| . |Type|) T) ((|PrimeField| . |Join|) T) ((|PrimeField| . |DifferentialDomain|) 172599) ((|PrimeField| . |Ring|) T) ((|PrimeField| . |Monoid|) T) ((|PrimeField| . |SemiRing|) T) ((|PrimeField| . |SemiGroup|) T) ((|PrimeField| . |Rng|) T) ((|PrimeField| . |AbelianGroup|) T) ((|PrimeField| . |AbelianMonoid|) T) ((|PrimeField| . |SetCategory|) T) ((|PrimeField| . |CoercibleTo|) 172573) ((|PrimeField| . |BasicType|) T) ((|PrimeField| . |AbelianSemiGroup|) T) ((|PrimeField| . |CancellationAbelianMonoid|) T) ((|PrimeField| . |DifferentialRing|) T) ((|PrimeField| . |FiniteAlgebraicExtensionField|) 172560) ((|PrimeField| . |CharacteristicZero|) 172526) ((|PrimeField| . |RetractableTo|) 172513) ((|PrimeField| . |VectorSpace|) 172500) ((|PrimeField| . |ExtensionField|) 172487) ((|PrimeField| . |ConvertibleTo|) 172464) ((|PermutationGroup| . |SetCategory|) T) ((|PermutationGroup| . |CoercibleTo|) 172400) ((|PermutationGroup| . |Type|) T) ((|PermutationGroup| . |Join|) T) ((|PermutationGroup| . |BasicType|) T) ((|PermutationGroup| . |HomotopicTo|) 172359) ((|PermutationGroup| . |CoercibleFrom|) 172318) ((|Permutation| . |PermutationCategory|) 172302) ((|Permutation| . |OrderedType|) 172244) ((|Permutation| . |OrderedSet|) 172186) ((|Permutation| . |Monoid|) T) ((|Permutation| . |SetCategory|) T) ((|Permutation| . |CoercibleTo|) 172160) ((|Permutation| . |BasicType|) T) ((|Permutation| . |SemiGroup|) T) ((|Permutation| . |Group|) T) ((|Permutation| . |Type|) T) ((|Permutation| . |Join|) T) ((|Permutation| . |Eltable|) 172139) ((|PendantTree| . |BinaryRecursiveAggregate|) 172123) ((|PendantTree| . |HomogeneousAggregate|) 172107) ((|PendantTree| . |SetCategory|) 172077) ((|PendantTree| . |Functorial|) 172061) ((|PendantTree| . |InnerEvalable|) 171980) ((|PendantTree| . |Evalable|) 171904) ((|PendantTree| . |CoercibleTo|) 171784) ((|PendantTree| . |BasicType|) 171722) ((|PendantTree| . |Type|) T) ((|PendantTree| . |Join|) T) ((|PendantTree| . |Aggregate|) T) ((|PendantTree| . |RecursiveAggregate|) 171706) ((|PoincareBirkhoffWittLyndonBasis| . |OrderedSet|) T) ((|PoincareBirkhoffWittLyndonBasis| . |CoercibleTo|) 171645) ((|PoincareBirkhoffWittLyndonBasis| . |SetCategory|) T) ((|PoincareBirkhoffWittLyndonBasis| . |BasicType|) T) ((|PoincareBirkhoffWittLyndonBasis| . |Join|) T) ((|PoincareBirkhoffWittLyndonBasis| . |Type|) T) ((|PoincareBirkhoffWittLyndonBasis| . |OrderedType|) T) ((|PoincareBirkhoffWittLyndonBasis| . |RetractableTo|) 171614) ((|PoincareBirkhoffWittLyndonBasis| . |CoercibleFrom|) 171583) ((|Pattern| . |SetCategory|) T) ((|Pattern| . |CoercibleTo|) 171557) ((|Pattern| . |Type|) T) ((|Pattern| . |Join|) T) ((|Pattern| . |BasicType|) T) ((|Pattern| . |RetractableTo|) 171522) ((|Pattern| . |CoercibleFrom|) 171487) ((|PatternMatchResult| . |SetCategory|) T) ((|PatternMatchResult| . |CoercibleTo|) 171461) ((|PatternMatchResult| . |Type|) T) ((|PatternMatchResult| . |Join|) T) ((|PatternMatchResult| . |BasicType|) T) ((|PatternMatchListResult| . |SetCategory|) T) ((|PatternMatchListResult| . |CoercibleTo|) 171435) ((|PatternMatchListResult| . |Type|) T) ((|PatternMatchListResult| . |Join|) T) ((|PatternMatchListResult| . |BasicType|) T) ((|ParameterAst| . |SpadSyntaxCategory|) T) ((|ParameterAst| . |HomotopicTo|) 171413) ((|ParameterAst| . |CoercibleTo|) 171368) ((|ParameterAst| . |CoercibleFrom|) 171346) ((|ParameterAst| . |SetCategory|) T) ((|ParameterAst| . |Type|) T) ((|ParameterAst| . |Join|) T) ((|ParameterAst| . |BasicType|) T) ((|ParameterAst| . |AbstractSyntaxCategory|) T) ((|ParameterAst| . |UnionType|) T) ((|Palette| . |SetCategory|) T) ((|Palette| . |CoercibleTo|) 171320) ((|Palette| . |Type|) T) ((|Palette| . |Join|) T) ((|Palette| . |BasicType|) T) ((|Palette| . |CoercibleFrom|) 171299) ((|Pair| . |Type|) T) ((|Pair| . |Join|) T) ((|Pair| . |CoercibleTo|) 171116) ((|Pair| . |SetCategory|) 171051) ((|Pair| . |BasicType|) 170986) ((|PAdicRationalConstructor| . |QuotientFieldCategory|) 170970) ((|PAdicRationalConstructor| . |StepThrough|) 170940) ((|PAdicRationalConstructor| . |RetractableTo|) 170759) ((|PAdicRationalConstructor| . |CoercibleFrom|) 170625) ((|PAdicRationalConstructor| . |ConvertibleTo|) 170328) ((|PAdicRationalConstructor| . |RealConstant|) 170297) ((|PAdicRationalConstructor| . |PolynomialFactorizationExplicit|) 170247) ((|PAdicRationalConstructor| . |Patternable|) 170231) ((|PAdicRationalConstructor| . |OrderedRing|) 170191) ((|PAdicRationalConstructor| . |OrderedCancellationAbelianMonoid|) 170151) ((|PAdicRationalConstructor| . |OrderedAbelianSemiGroup|) 170111) ((|PAdicRationalConstructor| . |OrderedType|) 170038) ((|PAdicRationalConstructor| . |OrderedSet|) 169965) ((|PAdicRationalConstructor| . |OrderedAbelianMonoid|) 169925) ((|PAdicRationalConstructor| . |OrderedAbelianGroup|) 169885) ((|PAdicRationalConstructor| . |OrderedIntegralDomain|) 169845) ((|PAdicRationalConstructor| . |PatternMatchable|) 169726) ((|PAdicRationalConstructor| . |FullyPatternMatchable|) 169710) ((|PAdicRationalConstructor| . |LinearlyExplicitRingOver|) 169626) ((|PAdicRationalConstructor| . |LeftModule|) 169499) ((|PAdicRationalConstructor| . |FullyLinearlyExplicitRingOver|) 169483) ((|PAdicRationalConstructor| . |Eltable|) 169436) ((|PAdicRationalConstructor| . |Evalable|) 169395) ((|PAdicRationalConstructor| . |InnerEvalable|) 169284) ((|PAdicRationalConstructor| . |Functorial|) 169268) ((|PAdicRationalConstructor| . |FullyEvalableOver|) 169252) ((|PAdicRationalConstructor| . |DivisionRing|) T) ((|PAdicRationalConstructor| . |BiModule|) 169179) ((|PAdicRationalConstructor| . |RightLinearSet|) 169120) ((|PAdicRationalConstructor| . |RightModule|) 169061) ((|PAdicRationalConstructor| . |EntireRing|) T) ((|PAdicRationalConstructor| . |Module|) 169002) ((|PAdicRationalConstructor| . |LinearSet|) 168943) ((|PAdicRationalConstructor| . |LeftLinearSet|) 168864) ((|PAdicRationalConstructor| . |Algebra|) 168805) ((|PAdicRationalConstructor| . |EuclideanDomain|) T) ((|PAdicRationalConstructor| . |GcdDomain|) T) ((|PAdicRationalConstructor| . |CommutativeRing|) T) ((|PAdicRationalConstructor| . |IntegralDomain|) T) ((|PAdicRationalConstructor| . |PrincipalIdealDomain|) T) ((|PAdicRationalConstructor| . |UniqueFactorizationDomain|) T) ((|PAdicRationalConstructor| . |Field|) T) ((|PAdicRationalConstructor| . |DifferentialRing|) 168770) ((|PAdicRationalConstructor| . |DifferentialDomain|) 168689) ((|PAdicRationalConstructor| . |DifferentialSpace|) 168614) ((|PAdicRationalConstructor| . |DifferentialSpaceExtension|) 168598) ((|PAdicRationalConstructor| . |PartialDifferentialDomain|) 168470) ((|PAdicRationalConstructor| . |PartialDifferentialSpace|) 168344) ((|PAdicRationalConstructor| . |PartialDifferentialRing|) 168276) ((|PAdicRationalConstructor| . |DifferentialExtension|) 168260) ((|PAdicRationalConstructor| . |CharacteristicZero|) 168179) ((|PAdicRationalConstructor| . |CharacteristicNonZero|) 168139) ((|PAdicRationalConstructor| . |CancellationAbelianMonoid|) T) ((|PAdicRationalConstructor| . |AbelianSemiGroup|) T) ((|PAdicRationalConstructor| . |BasicType|) T) ((|PAdicRationalConstructor| . |Join|) T) ((|PAdicRationalConstructor| . |Type|) T) ((|PAdicRationalConstructor| . |CoercibleTo|) 168113) ((|PAdicRationalConstructor| . |SetCategory|) T) ((|PAdicRationalConstructor| . |AbelianMonoid|) T) ((|PAdicRationalConstructor| . |AbelianGroup|) T) ((|PAdicRationalConstructor| . |Ring|) T) ((|PAdicRationalConstructor| . |Monoid|) T) ((|PAdicRationalConstructor| . |SemiRing|) T) ((|PAdicRationalConstructor| . |SemiGroup|) T) ((|PAdicRationalConstructor| . |Rng|) T) ((|PAdicRational| . |QuotientFieldCategory|) 168080) ((|PAdicRational| . |StepThrough|) NIL) ((|PAdicRational| . |RetractableTo|) 168047) ((|PAdicRational| . |CoercibleFrom|) 167951) ((|PAdicRational| . |ConvertibleTo|) NIL) ((|PAdicRational| . |RealConstant|) NIL) ((|PAdicRational| . |PolynomialFactorizationExplicit|) NIL) ((|PAdicRational| . |Patternable|) 167918) ((|PAdicRational| . |OrderedRing|) NIL) ((|PAdicRational| . |OrderedCancellationAbelianMonoid|) NIL) ((|PAdicRational| . |OrderedAbelianSemiGroup|) NIL) ((|PAdicRational| . |OrderedType|) NIL) ((|PAdicRational| . |OrderedSet|) NIL) ((|PAdicRational| . |OrderedAbelianMonoid|) NIL) ((|PAdicRational| . |OrderedAbelianGroup|) NIL) ((|PAdicRational| . |OrderedIntegralDomain|) NIL) ((|PAdicRational| . |PatternMatchable|) NIL) ((|PAdicRational| . |FullyPatternMatchable|) 167885) ((|PAdicRational| . |LinearlyExplicitRingOver|) 167852) ((|PAdicRational| . |LeftModule|) 167776) ((|PAdicRational| . |FullyLinearlyExplicitRingOver|) 167743) ((|PAdicRational| . |Eltable|) 167679) ((|PAdicRational| . |Evalable|) 167620) ((|PAdicRational| . |InnerEvalable|) 167495) ((|PAdicRational| . |Functorial|) 167462) ((|PAdicRational| . |FullyEvalableOver|) 167429) ((|PAdicRational| . |DivisionRing|) T) ((|PAdicRational| . |BiModule|) 167337) ((|PAdicRational| . |RightLinearSet|) 167261) ((|PAdicRational| . |RightModule|) 167185) ((|PAdicRational| . |EntireRing|) T) ((|PAdicRational| . |Module|) 167109) ((|PAdicRational| . |LinearSet|) 167033) ((|PAdicRational| . |LeftLinearSet|) 166937) ((|PAdicRational| . |Algebra|) 166861) ((|PAdicRational| . |EuclideanDomain|) T) ((|PAdicRational| . |GcdDomain|) T) ((|PAdicRational| . |CommutativeRing|) T) ((|PAdicRational| . |IntegralDomain|) T) ((|PAdicRational| . |PrincipalIdealDomain|) T) ((|PAdicRational| . |UniqueFactorizationDomain|) T) ((|PAdicRational| . |Field|) T) ((|PAdicRational| . |DifferentialRing|) NIL) ((|PAdicRational| . |DifferentialDomain|) NIL) ((|PAdicRational| . |DifferentialSpace|) NIL) ((|PAdicRational| . |DifferentialSpaceExtension|) 166828) ((|PAdicRational| . |PartialDifferentialDomain|) NIL) ((|PAdicRational| . |PartialDifferentialSpace|) NIL) ((|PAdicRational| . |PartialDifferentialRing|) NIL) ((|PAdicRational| . |DifferentialExtension|) 166795) ((|PAdicRational| . |CharacteristicZero|) T) ((|PAdicRational| . |CharacteristicNonZero|) NIL) ((|PAdicRational| . |CancellationAbelianMonoid|) T) ((|PAdicRational| . |AbelianSemiGroup|) T) ((|PAdicRational| . |BasicType|) T) ((|PAdicRational| . |Join|) T) ((|PAdicRational| . |Type|) T) ((|PAdicRational| . |CoercibleTo|) 166769) ((|PAdicRational| . |SetCategory|) T) ((|PAdicRational| . |AbelianMonoid|) T) ((|PAdicRational| . |AbelianGroup|) T) ((|PAdicRational| . |Ring|) T) ((|PAdicRational| . |Monoid|) T) ((|PAdicRational| . |SemiRing|) T) ((|PAdicRational| . |SemiGroup|) T) ((|PAdicRational| . |Rng|) T) ((|PAdicInteger| . |PAdicIntegerCategory|) 166753) ((|PAdicInteger| . |PrincipalIdealDomain|) T) ((|PAdicInteger| . |IntegralDomain|) T) ((|PAdicInteger| . |EntireRing|) T) ((|PAdicInteger| . |CommutativeRing|) T) ((|PAdicInteger| . |CoercibleFrom|) 166720) ((|PAdicInteger| . |Module|) 166707) ((|PAdicInteger| . |LinearSet|) 166694) ((|PAdicInteger| . |RightModule|) 166681) ((|PAdicInteger| . |RightLinearSet|) 166668) ((|PAdicInteger| . |BiModule|) 166653) ((|PAdicInteger| . |Algebra|) 166640) ((|PAdicInteger| . |GcdDomain|) T) ((|PAdicInteger| . |EuclideanDomain|) T) ((|PAdicInteger| . |Ring|) T) ((|PAdicInteger| . |Monoid|) T) ((|PAdicInteger| . |SemiRing|) T) ((|PAdicInteger| . |SemiGroup|) T) ((|PAdicInteger| . |Rng|) T) ((|PAdicInteger| . |AbelianGroup|) T) ((|PAdicInteger| . |LeftLinearSet|) 166607) ((|PAdicInteger| . |AbelianMonoid|) T) ((|PAdicInteger| . |SetCategory|) T) ((|PAdicInteger| . |CoercibleTo|) 166581) ((|PAdicInteger| . |Type|) T) ((|PAdicInteger| . |Join|) T) ((|PAdicInteger| . |BasicType|) T) ((|PAdicInteger| . |AbelianSemiGroup|) T) ((|PAdicInteger| . |CancellationAbelianMonoid|) T) ((|PAdicInteger| . |LeftModule|) 166568) ((|PAdicInteger| . |CharacteristicZero|) T) ((|OrdinaryWeightedPolynomials| . |Ring|) T) ((|OrdinaryWeightedPolynomials| . |Monoid|) T) ((|OrdinaryWeightedPolynomials| . |SemiRing|) T) ((|OrdinaryWeightedPolynomials| . |SemiGroup|) T) ((|OrdinaryWeightedPolynomials| . |Rng|) T) ((|OrdinaryWeightedPolynomials| . |AbelianGroup|) T) ((|OrdinaryWeightedPolynomials| . |LeftLinearSet|) 166495) ((|OrdinaryWeightedPolynomials| . |AbelianMonoid|) T) ((|OrdinaryWeightedPolynomials| . |SetCategory|) T) ((|OrdinaryWeightedPolynomials| . |CoercibleTo|) 166441) ((|OrdinaryWeightedPolynomials| . |Type|) T) ((|OrdinaryWeightedPolynomials| . |Join|) T) ((|OrdinaryWeightedPolynomials| . |BasicType|) T) ((|OrdinaryWeightedPolynomials| . |AbelianSemiGroup|) T) ((|OrdinaryWeightedPolynomials| . |CancellationAbelianMonoid|) T) ((|OrdinaryWeightedPolynomials| . |LeftModule|) 166388) ((|OrdinaryWeightedPolynomials| . |CoercibleFrom|) 166297) ((|OrdinaryWeightedPolynomials| . |HomotopicTo|) 166266) ((|OrdinaryWeightedPolynomials| . |Algebra|) 166223) ((|OrdinaryWeightedPolynomials| . |BiModule|) 166175) ((|OrdinaryWeightedPolynomials| . |RightLinearSet|) 166132) ((|OrdinaryWeightedPolynomials| . |RightModule|) 166089) ((|OrdinaryWeightedPolynomials| . |LinearSet|) 166046) ((|OrdinaryWeightedPolynomials| . |Module|) 166003) ((|OverloadSet| . |SetCategory|) T) ((|OverloadSet| . |CoercibleTo|) 165977) ((|OverloadSet| . |Type|) T) ((|OverloadSet| . |Join|) T) ((|OverloadSet| . |BasicType|) T) ((|OrderedVariableList| . |OrderedFinite|) T) ((|OrderedVariableList| . |OrderedType|) T) ((|OrderedVariableList| . |OrderedSet|) T) ((|OrderedVariableList| . |SetCategory|) T) ((|OrderedVariableList| . |CoercibleTo|) 165951) ((|OrderedVariableList| . |Type|) T) ((|OrderedVariableList| . |Join|) T) ((|OrderedVariableList| . |BasicType|) T) ((|OrderedVariableList| . |Finite|) T) ((|OrderedVariableList| . |ConvertibleTo|) 165845) ((|OutputForm| . |SetCategory|) T) ((|OutputForm| . |CoercibleTo|) 165819) ((|OutputForm| . |Type|) T) ((|OutputForm| . |Join|) T) ((|OutputForm| . |BasicType|) T) ((|OutputBinaryFile| . |OutputByteConduit|) T) ((|OutputBinaryFile| . |Conduit|) T) ((|OutputBinaryFile| . |CoercibleTo|) 165793) ((|OrdSetInts| . |OrderedSet|) T) ((|OrdSetInts| . |CoercibleTo|) 165767) ((|OrdSetInts| . |SetCategory|) T) ((|OrdSetInts| . |BasicType|) T) ((|OrdSetInts| . |Join|) T) ((|OrdSetInts| . |Type|) T) ((|OrdSetInts| . |OrderedType|) T) ((|UnivariateSkewPolynomial| . |UnivariateSkewPolynomialCategory|) 165751) ((|UnivariateSkewPolynomial| . |RetractableTo|) 165595) ((|UnivariateSkewPolynomial| . |CoercibleFrom|) 165450) ((|UnivariateSkewPolynomial| . |FullyRetractableTo|) 165434) ((|UnivariateSkewPolynomial| . |Module|) 165391) ((|UnivariateSkewPolynomial| . |LinearSet|) 165348) ((|UnivariateSkewPolynomial| . |LeftModule|) 165322) ((|UnivariateSkewPolynomial| . |LeftLinearSet|) 165276) ((|UnivariateSkewPolynomial| . |CancellationAbelianMonoid|) T) ((|UnivariateSkewPolynomial| . |AbelianSemiGroup|) T) ((|UnivariateSkewPolynomial| . |BasicType|) T) ((|UnivariateSkewPolynomial| . |Join|) T) ((|UnivariateSkewPolynomial| . |Type|) T) ((|UnivariateSkewPolynomial| . |CoercibleTo|) 165250) ((|UnivariateSkewPolynomial| . |SetCategory|) T) ((|UnivariateSkewPolynomial| . |AbelianMonoid|) T) ((|UnivariateSkewPolynomial| . |AbelianGroup|) T) ((|UnivariateSkewPolynomial| . |RightModule|) 165234) ((|UnivariateSkewPolynomial| . |RightLinearSet|) 165218) ((|UnivariateSkewPolynomial| . |BiModule|) 165197) ((|UnivariateSkewPolynomial| . |Ring|) T) ((|UnivariateSkewPolynomial| . |Monoid|) T) ((|UnivariateSkewPolynomial| . |SemiRing|) T) ((|UnivariateSkewPolynomial| . |SemiGroup|) T) ((|UnivariateSkewPolynomial| . |Rng|) T) ((|UnivariateSkewPolynomial| . |Algebra|) 165154) ((|SparseUnivariateSkewPolynomial| . |UnivariateSkewPolynomialCategory|) 165138) ((|SparseUnivariateSkewPolynomial| . |RetractableTo|) 164982) ((|SparseUnivariateSkewPolynomial| . |CoercibleFrom|) 164863) ((|SparseUnivariateSkewPolynomial| . |FullyRetractableTo|) 164847) ((|SparseUnivariateSkewPolynomial| . |Module|) 164804) ((|SparseUnivariateSkewPolynomial| . |LinearSet|) 164761) ((|SparseUnivariateSkewPolynomial| . |LeftModule|) 164735) ((|SparseUnivariateSkewPolynomial| . |LeftLinearSet|) 164689) ((|SparseUnivariateSkewPolynomial| . |CancellationAbelianMonoid|) T) ((|SparseUnivariateSkewPolynomial| . |AbelianSemiGroup|) T) ((|SparseUnivariateSkewPolynomial| . |BasicType|) T) ((|SparseUnivariateSkewPolynomial| . |Join|) T) ((|SparseUnivariateSkewPolynomial| . |Type|) T) ((|SparseUnivariateSkewPolynomial| . |CoercibleTo|) 164663) ((|SparseUnivariateSkewPolynomial| . |SetCategory|) T) ((|SparseUnivariateSkewPolynomial| . |AbelianMonoid|) T) ((|SparseUnivariateSkewPolynomial| . |AbelianGroup|) T) ((|SparseUnivariateSkewPolynomial| . |RightModule|) 164647) ((|SparseUnivariateSkewPolynomial| . |RightLinearSet|) 164631) ((|SparseUnivariateSkewPolynomial| . |BiModule|) 164610) ((|SparseUnivariateSkewPolynomial| . |Ring|) T) ((|SparseUnivariateSkewPolynomial| . |Monoid|) T) ((|SparseUnivariateSkewPolynomial| . |SemiRing|) T) ((|SparseUnivariateSkewPolynomial| . |SemiGroup|) T) ((|SparseUnivariateSkewPolynomial| . |Rng|) T) ((|SparseUnivariateSkewPolynomial| . |Algebra|) 164567) ((|OrderedStructure| . |OrderedType|) T) ((|OrderedStructure| . |Type|) T) ((|OrderedStructure| . |Join|) T) ((|OrderedStructure| . |BasicType|) T) ((|OrderedStructure| . |HomotopicTo|) 164551) ((|OrderedStructure| . |CoercibleTo|) 164480) ((|OrderedStructure| . |CoercibleFrom|) 164464) ((|OrderedCompletion| . |SetCategory|) T) ((|OrderedCompletion| . |CoercibleTo|) 164438) ((|OrderedCompletion| . |Type|) T) ((|OrderedCompletion| . |Join|) T) ((|OrderedCompletion| . |BasicType|) T) ((|OrderedCompletion| . |FullyRetractableTo|) 164422) ((|OrderedCompletion| . |CoercibleFrom|) 164232) ((|OrderedCompletion| . |RetractableTo|) 164076) ((|OrderedCompletion| . |AbelianGroup|) 164011) ((|OrderedCompletion| . |LeftLinearSet|) 163897) ((|OrderedCompletion| . |AbelianMonoid|) 163832) ((|OrderedCompletion| . |AbelianSemiGroup|) 163767) ((|OrderedCompletion| . |CancellationAbelianMonoid|) 163702) ((|OrderedCompletion| . |OrderedRing|) 163672) ((|OrderedCompletion| . |OrderedCancellationAbelianMonoid|) 163642) ((|OrderedCompletion| . |OrderedAbelianSemiGroup|) 163612) ((|OrderedCompletion| . |OrderedType|) 163582) ((|OrderedCompletion| . |OrderedSet|) 163552) ((|OrderedCompletion| . |OrderedAbelianMonoid|) 163522) ((|OrderedCompletion| . |OrderedAbelianGroup|) 163492) ((|OrderedCompletion| . |Ring|) 163462) ((|OrderedCompletion| . |Monoid|) 163432) ((|OrderedCompletion| . |SemiRing|) 163402) ((|OrderedCompletion| . |SemiGroup|) 163372) ((|OrderedCompletion| . |Rng|) 163342) ((|OrderedCompletion| . |LeftModule|) 163306) ((|OrderedCompletion| . |CharacteristicZero|) 163276) ((|OperatorSignature| . |OperatorCategory|) 163250) ((|OperatorSignature| . |BasicType|) T) ((|OperatorSignature| . |Join|) T) ((|OperatorSignature| . |Type|) T) ((|OperatorSignature| . |CoercibleTo|) 163224) ((|OperatorSignature| . |SetCategory|) T) ((|Operator| . |Ring|) T) ((|Operator| . |Monoid|) T) ((|Operator| . |SemiRing|) T) ((|Operator| . |SemiGroup|) T) ((|Operator| . |Rng|) T) ((|Operator| . |AbelianGroup|) T) ((|Operator| . |LeftLinearSet|) 163151) ((|Operator| . |AbelianMonoid|) T) ((|Operator| . |SetCategory|) T) ((|Operator| . |CoercibleTo|) 163125) ((|Operator| . |Type|) T) ((|Operator| . |Join|) T) ((|Operator| . |BasicType|) T) ((|Operator| . |AbelianSemiGroup|) T) ((|Operator| . |CancellationAbelianMonoid|) T) ((|Operator| . |LeftModule|) 163072) ((|Operator| . |CoercibleFrom|) 163010) ((|Operator| . |RetractableTo|) 162968) ((|Operator| . |Eltable|) 162947) ((|Operator| . |CharacteristicZero|) 162910) ((|Operator| . |CharacteristicNonZero|) 162870) ((|Operator| . |Algebra|) 162827) ((|Operator| . |BiModule|) 162779) ((|Operator| . |RightLinearSet|) 162736) ((|Operator| . |RightModule|) 162693) ((|Operator| . |LinearSet|) 162650) ((|Operator| . |Module|) 162607) ((|OnePointCompletion| . |SetCategory|) T) ((|OnePointCompletion| . |CoercibleTo|) 162581) ((|OnePointCompletion| . |Type|) T) ((|OnePointCompletion| . |Join|) T) ((|OnePointCompletion| . |BasicType|) T) ((|OnePointCompletion| . |FullyRetractableTo|) 162565) ((|OnePointCompletion| . |CoercibleFrom|) 162375) ((|OnePointCompletion| . |RetractableTo|) 162219) ((|OnePointCompletion| . |AbelianGroup|) 162154) ((|OnePointCompletion| . |LeftLinearSet|) 162040) ((|OnePointCompletion| . |AbelianMonoid|) 161975) ((|OnePointCompletion| . |AbelianSemiGroup|) 161910) ((|OnePointCompletion| . |CancellationAbelianMonoid|) 161845) ((|OnePointCompletion| . |OrderedRing|) 161815) ((|OnePointCompletion| . |OrderedCancellationAbelianMonoid|) 161785) ((|OnePointCompletion| . |OrderedAbelianSemiGroup|) 161755) ((|OnePointCompletion| . |OrderedType|) 161725) ((|OnePointCompletion| . |OrderedSet|) 161695) ((|OnePointCompletion| . |OrderedAbelianMonoid|) 161665) ((|OnePointCompletion| . |OrderedAbelianGroup|) 161635) ((|OnePointCompletion| . |Ring|) 161605) ((|OnePointCompletion| . |Monoid|) 161575) ((|OnePointCompletion| . |SemiRing|) 161545) ((|OnePointCompletion| . |SemiGroup|) 161515) ((|OnePointCompletion| . |Rng|) 161485) ((|OnePointCompletion| . |LeftModule|) 161449) ((|OnePointCompletion| . |CharacteristicZero|) 161419) ((|OppositeMonogenicLinearOperator| . |MonogenicLinearOperator|) 161403) ((|OppositeMonogenicLinearOperator| . |CoercibleFrom|) 161340) ((|OppositeMonogenicLinearOperator| . |Module|) 161297) ((|OppositeMonogenicLinearOperator| . |LinearSet|) 161254) ((|OppositeMonogenicLinearOperator| . |LeftModule|) 161228) ((|OppositeMonogenicLinearOperator| . |LeftLinearSet|) 161182) ((|OppositeMonogenicLinearOperator| . |CancellationAbelianMonoid|) T) ((|OppositeMonogenicLinearOperator| . |AbelianSemiGroup|) T) ((|OppositeMonogenicLinearOperator| . |BasicType|) T) ((|OppositeMonogenicLinearOperator| . |Join|) T) ((|OppositeMonogenicLinearOperator| . |Type|) T) ((|OppositeMonogenicLinearOperator| . |CoercibleTo|) 161156) ((|OppositeMonogenicLinearOperator| . |SetCategory|) T) ((|OppositeMonogenicLinearOperator| . |AbelianMonoid|) T) ((|OppositeMonogenicLinearOperator| . |AbelianGroup|) T) ((|OppositeMonogenicLinearOperator| . |RightModule|) 161140) ((|OppositeMonogenicLinearOperator| . |RightLinearSet|) 161124) ((|OppositeMonogenicLinearOperator| . |BiModule|) 161103) ((|OppositeMonogenicLinearOperator| . |Ring|) T) ((|OppositeMonogenicLinearOperator| . |Monoid|) T) ((|OppositeMonogenicLinearOperator| . |SemiRing|) T) ((|OppositeMonogenicLinearOperator| . |SemiGroup|) T) ((|OppositeMonogenicLinearOperator| . |Rng|) T) ((|OppositeMonogenicLinearOperator| . |Algebra|) 161060) ((|OppositeMonogenicLinearOperator| . |DifferentialRing|) 161025) ((|OppositeMonogenicLinearOperator| . |DifferentialDomain|) 160984) ((|OppositeMonogenicLinearOperator| . |DifferentialSpace|) 160949) ((|OrderedFreeMonoid| . |FreeMonoidCategory|) 160933) ((|OrderedFreeMonoid| . |CoercibleFrom|) 160917) ((|OrderedFreeMonoid| . |RetractableTo|) 160901) ((|OrderedFreeMonoid| . |OrderedType|) T) ((|OrderedFreeMonoid| . |OrderedSet|) T) ((|OrderedFreeMonoid| . |SemiGroup|) T) ((|OrderedFreeMonoid| . |BasicType|) T) ((|OrderedFreeMonoid| . |Join|) T) ((|OrderedFreeMonoid| . |Type|) T) ((|OrderedFreeMonoid| . |CoercibleTo|) 160875) ((|OrderedFreeMonoid| . |SetCategory|) T) ((|OrderedFreeMonoid| . |Monoid|) T) ((|OrderedFreeMonoid| . |OrderedMonoid|) T) ((|OrderedFreeMonoid| . |OrderedSemiGroup|) T) ((|OrderlyDifferentialVariable| . |DifferentialVariableCategory|) 160859) ((|OrderlyDifferentialVariable| . |CoercibleFrom|) 160843) ((|OrderlyDifferentialVariable| . |RetractableTo|) 160827) ((|OrderlyDifferentialVariable| . |OrderedType|) T) ((|OrderlyDifferentialVariable| . |BasicType|) T) ((|OrderlyDifferentialVariable| . |SetCategory|) T) ((|OrderlyDifferentialVariable| . |CoercibleTo|) 160801) ((|OrderlyDifferentialVariable| . |OrderedSet|) T) ((|OrderlyDifferentialVariable| . |DifferentialDomain|) 160788) ((|OrderlyDifferentialVariable| . |Join|) T) ((|OrderlyDifferentialVariable| . |Type|) T) ((|OrderlyDifferentialVariable| . |DifferentialSpace|) T) ((|OrdinaryDifferentialRing| . |BiModule|) 160716) ((|OrdinaryDifferentialRing| . |RightLinearSet|) 160653) ((|OrdinaryDifferentialRing| . |RightModule|) 160590) ((|OrdinaryDifferentialRing| . |AbelianGroup|) T) ((|OrdinaryDifferentialRing| . |LeftLinearSet|) 160507) ((|OrdinaryDifferentialRing| . |AbelianMonoid|) T) ((|OrdinaryDifferentialRing| . |SetCategory|) T) ((|OrdinaryDifferentialRing| . |CoercibleTo|) 160468) ((|OrdinaryDifferentialRing| . |Type|) T) ((|OrdinaryDifferentialRing| . |Join|) T) ((|OrdinaryDifferentialRing| . |BasicType|) T) ((|OrdinaryDifferentialRing| . |AbelianSemiGroup|) T) ((|OrdinaryDifferentialRing| . |CancellationAbelianMonoid|) T) ((|OrdinaryDifferentialRing| . |LeftModule|) 160405) ((|OrdinaryDifferentialRing| . |DifferentialRing|) T) ((|OrdinaryDifferentialRing| . |CoercibleFrom|) 160300) ((|OrdinaryDifferentialRing| . |Rng|) T) ((|OrdinaryDifferentialRing| . |SemiGroup|) T) ((|OrdinaryDifferentialRing| . |SemiRing|) T) ((|OrdinaryDifferentialRing| . |Monoid|) T) ((|OrdinaryDifferentialRing| . |Ring|) T) ((|OrdinaryDifferentialRing| . |DifferentialDomain|) 160287) ((|OrdinaryDifferentialRing| . |DifferentialSpace|) T) ((|OrdinaryDifferentialRing| . |HomotopicTo|) 160271) ((|OrdinaryDifferentialRing| . |Field|) 160247) ((|OrdinaryDifferentialRing| . |UniqueFactorizationDomain|) 160223) ((|OrdinaryDifferentialRing| . |PrincipalIdealDomain|) 160199) ((|OrdinaryDifferentialRing| . |IntegralDomain|) 160175) ((|OrdinaryDifferentialRing| . |CommutativeRing|) 160151) ((|OrdinaryDifferentialRing| . |Module|) 160079) ((|OrdinaryDifferentialRing| . |LinearSet|) 160007) ((|OrdinaryDifferentialRing| . |Algebra|) 159935) ((|OrdinaryDifferentialRing| . |GcdDomain|) 159911) ((|OrdinaryDifferentialRing| . |EuclideanDomain|) 159887) ((|OrdinaryDifferentialRing| . |EntireRing|) 159863) ((|OrdinaryDifferentialRing| . |DivisionRing|) 159839) ((|OrderlyDifferentialPolynomial| . |DifferentialPolynomialCategory|) 159745) ((|OrderlyDifferentialPolynomial| . |CoercibleFrom|) 159338) ((|OrderlyDifferentialPolynomial| . |RetractableTo|) 159066) ((|OrderlyDifferentialPolynomial| . |ConvertibleTo|) NIL) ((|OrderlyDifferentialPolynomial| . |FiniteAbelianMonoidRing|) 158986) ((|OrderlyDifferentialPolynomial| . |FullyRetractableTo|) 158970) ((|OrderlyDifferentialPolynomial| . |Algebra|) 158733) ((|OrderlyDifferentialPolynomial| . |BiModule|) 158476) ((|OrderlyDifferentialPolynomial| . |RightLinearSet|) 158233) ((|OrderlyDifferentialPolynomial| . |RightModule|) 157990) ((|OrderlyDifferentialPolynomial| . |LeftLinearSet|) 157867) ((|OrderlyDifferentialPolynomial| . |LeftModule|) 157696) ((|OrderlyDifferentialPolynomial| . |LinearSet|) 157459) ((|OrderlyDifferentialPolynomial| . |Module|) 157222) ((|OrderlyDifferentialPolynomial| . |CharacteristicNonZero|) 157182) ((|OrderlyDifferentialPolynomial| . |CharacteristicZero|) 157145) ((|OrderlyDifferentialPolynomial| . |CommutativeRing|) 156998) ((|OrderlyDifferentialPolynomial| . |Functorial|) 156982) ((|OrderlyDifferentialPolynomial| . |IntegralDomain|) 156868) ((|OrderlyDifferentialPolynomial| . |EntireRing|) 156754) ((|OrderlyDifferentialPolynomial| . |AbelianMonoidRing|) 156674) ((|OrderlyDifferentialPolynomial| . |FullyLinearlyExplicitRingOver|) 156658) ((|OrderlyDifferentialPolynomial| . |LinearlyExplicitRingOver|) 156574) ((|OrderlyDifferentialPolynomial| . |GcdDomain|) 156492) ((|OrderlyDifferentialPolynomial| . |InnerEvalable|) 156322) ((|OrderlyDifferentialPolynomial| . |PartialDifferentialRing|) 156203) ((|OrderlyDifferentialPolynomial| . |PartialDifferentialDomain|) 156022) ((|OrderlyDifferentialPolynomial| . |PartialDifferentialSpace|) 155845) ((|OrderlyDifferentialPolynomial| . |PatternMatchable|) NIL) ((|OrderlyDifferentialPolynomial| . |PolynomialFactorizationExplicit|) 155795) ((|OrderlyDifferentialPolynomial| . |UniqueFactorizationDomain|) 155745) ((|OrderlyDifferentialPolynomial| . |PolynomialCategory|) 155658) ((|OrderlyDifferentialPolynomial| . |Evalable|) 155645) ((|OrderlyDifferentialPolynomial| . |DifferentialRing|) 155610) ((|OrderlyDifferentialPolynomial| . |CancellationAbelianMonoid|) T) ((|OrderlyDifferentialPolynomial| . |AbelianSemiGroup|) T) ((|OrderlyDifferentialPolynomial| . |BasicType|) T) ((|OrderlyDifferentialPolynomial| . |CoercibleTo|) 155584) ((|OrderlyDifferentialPolynomial| . |SetCategory|) T) ((|OrderlyDifferentialPolynomial| . |AbelianMonoid|) T) ((|OrderlyDifferentialPolynomial| . |AbelianGroup|) T) ((|OrderlyDifferentialPolynomial| . |Rng|) T) ((|OrderlyDifferentialPolynomial| . |SemiGroup|) T) ((|OrderlyDifferentialPolynomial| . |SemiRing|) T) ((|OrderlyDifferentialPolynomial| . |Monoid|) T) ((|OrderlyDifferentialPolynomial| . |Ring|) T) ((|OrderlyDifferentialPolynomial| . |DifferentialDomain|) 155503) ((|OrderlyDifferentialPolynomial| . |Join|) T) ((|OrderlyDifferentialPolynomial| . |Type|) T) ((|OrderlyDifferentialPolynomial| . |DifferentialSpace|) 155428) ((|OrderlyDifferentialPolynomial| . |DifferentialSpaceExtension|) 155412) ((|OrderlyDifferentialPolynomial| . |DifferentialExtension|) 155396) ((|OrderedDirectProduct| . |DirectProductCategory|) 155375) ((|OrderedDirectProduct| . |VectorSpace|) 155342) ((|OrderedDirectProduct| . |OrderedCancellationAbelianMonoid|) 155300) ((|OrderedDirectProduct| . |OrderedAbelianSemiGroup|) 155258) ((|OrderedDirectProduct| . |OrderedType|) 155183) ((|OrderedDirectProduct| . |OrderedSet|) 155108) ((|OrderedDirectProduct| . |OrderedAbelianMonoid|) 155066) ((|OrderedDirectProduct| . |OrderedAbelianMonoidSup|) 155024) ((|OrderedDirectProduct| . |Module|) 154953) ((|OrderedDirectProduct| . |LinearSet|) 154858) ((|OrderedDirectProduct| . |EltableAggregate|) 154830) ((|OrderedDirectProduct| . |Eltable|) 154802) ((|OrderedDirectProduct| . |IndexedAggregate|) 154774) ((|OrderedDirectProduct| . |RetractableTo|) 154525) ((|OrderedDirectProduct| . |CoercibleFrom|) 154249) ((|OrderedDirectProduct| . |FullyRetractableTo|) 154210) ((|OrderedDirectProduct| . |LinearlyExplicitRingOver|) 154082) ((|OrderedDirectProduct| . |LeftModule|) 153867) ((|OrderedDirectProduct| . |FullyLinearlyExplicitRingOver|) 153835) ((|OrderedDirectProduct| . |HomogeneousAggregate|) 153819) ((|OrderedDirectProduct| . |Functorial|) 153803) ((|OrderedDirectProduct| . |InnerEvalable|) 153722) ((|OrderedDirectProduct| . |Evalable|) 153646) ((|OrderedDirectProduct| . |Aggregate|) T) ((|OrderedDirectProduct| . |FiniteAggregate|) 153630) ((|OrderedDirectProduct| . |Finite|) 153605) ((|OrderedDirectProduct| . |DifferentialRing|) 153542) ((|OrderedDirectProduct| . |LeftLinearSet|) 153272) ((|OrderedDirectProduct| . |Rng|) 153249) ((|OrderedDirectProduct| . |SemiGroup|) 153226) ((|OrderedDirectProduct| . |SemiRing|) 153203) ((|OrderedDirectProduct| . |Monoid|) 153180) ((|OrderedDirectProduct| . |Ring|) 153157) ((|OrderedDirectProduct| . |DifferentialDomain|) 153020) ((|OrderedDirectProduct| . |DifferentialSpace|) 152889) ((|OrderedDirectProduct| . |DifferentialSpaceExtension|) 152857) ((|OrderedDirectProduct| . |PartialDifferentialDomain|) 152673) ((|OrderedDirectProduct| . |PartialDifferentialSpace|) 152491) ((|OrderedDirectProduct| . |PartialDifferentialRing|) 152395) ((|OrderedDirectProduct| . |DifferentialExtension|) 152363) ((|OrderedDirectProduct| . |CoercibleTo|) 151908) ((|OrderedDirectProduct| . |RightModule|) 151815) ((|OrderedDirectProduct| . |RightLinearSet|) 151698) ((|OrderedDirectProduct| . |BiModule|) 151600) ((|OrderedDirectProduct| . |CancellationAbelianMonoid|) 151402) ((|OrderedDirectProduct| . |AbelianSemiGroup|) 151139) ((|OrderedDirectProduct| . |BasicType|) 150744) ((|OrderedDirectProduct| . |Join|) T) ((|OrderedDirectProduct| . |Type|) T) ((|OrderedDirectProduct| . |SetCategory|) 150376) ((|OrderedDirectProduct| . |AbelianMonoid|) 150147) ((|OrderedDirectProduct| . |AbelianGroup|) 150033) ((|Octonion| . |OctonionCategory|) 150017) ((|Octonion| . |OrderedType|) 149988) ((|Octonion| . |OrderedSet|) 149959) ((|Octonion| . |RetractableTo|) 149636) ((|Octonion| . |CoercibleFrom|) 149413) ((|Octonion| . |FullyRetractableTo|) 149369) ((|Octonion| . |Eltable|) 149322) ((|Octonion| . |Evalable|) 149281) ((|Octonion| . |InnerEvalable|) 149170) ((|Octonion| . |Functorial|) 149154) ((|Octonion| . |FullyEvalableOver|) 149138) ((|Octonion| . |Finite|) 149113) ((|Octonion| . |ConvertibleTo|) 149049) ((|Octonion| . |CharacteristicZero|) 149012) ((|Octonion| . |CharacteristicNonZero|) 148972) ((|Octonion| . |Module|) 148956) ((|Octonion| . |LinearSet|) 148940) ((|Octonion| . |LeftModule|) 148914) ((|Octonion| . |LeftLinearSet|) 148868) ((|Octonion| . |CancellationAbelianMonoid|) T) ((|Octonion| . |AbelianSemiGroup|) T) ((|Octonion| . |BasicType|) T) ((|Octonion| . |Join|) T) ((|Octonion| . |Type|) T) ((|Octonion| . |CoercibleTo|) 148842) ((|Octonion| . |SetCategory|) T) ((|Octonion| . |AbelianMonoid|) T) ((|Octonion| . |AbelianGroup|) T) ((|Octonion| . |RightModule|) 148826) ((|Octonion| . |RightLinearSet|) 148810) ((|Octonion| . |BiModule|) 148789) ((|Octonion| . |Ring|) T) ((|Octonion| . |Monoid|) T) ((|Octonion| . |SemiRing|) T) ((|Octonion| . |SemiGroup|) T) ((|Octonion| . |Rng|) T) ((|Octonion| . |Algebra|) 148773) ((|NewSparseUnivariatePolynomial| . |UnivariatePolynomialCategory|) 148757) ((|NewSparseUnivariatePolynomial| . |StepThrough|) 148727) ((|NewSparseUnivariatePolynomial| . |ConvertibleTo|) NIL) ((|NewSparseUnivariatePolynomial| . |Evalable|) 148714) ((|NewSparseUnivariatePolynomial| . |InnerEvalable|) 148643) ((|NewSparseUnivariatePolynomial| . |FiniteAbelianMonoidRing|) 148604) ((|NewSparseUnivariatePolynomial| . |RetractableTo|) 148370) ((|NewSparseUnivariatePolynomial| . |FullyRetractableTo|) 148354) ((|NewSparseUnivariatePolynomial| . |Algebra|) 148094) ((|NewSparseUnivariatePolynomial| . |BiModule|) 147814) ((|NewSparseUnivariatePolynomial| . |RightLinearSet|) 147548) ((|NewSparseUnivariatePolynomial| . |RightModule|) 147282) ((|NewSparseUnivariatePolynomial| . |LeftLinearSet|) 147159) ((|NewSparseUnivariatePolynomial| . |LeftModule|) 146988) ((|NewSparseUnivariatePolynomial| . |LinearSet|) 146728) ((|NewSparseUnivariatePolynomial| . |Module|) 146468) ((|NewSparseUnivariatePolynomial| . |CoercibleFrom|) 146076) ((|NewSparseUnivariatePolynomial| . |CharacteristicNonZero|) 146036) ((|NewSparseUnivariatePolynomial| . |CharacteristicZero|) 145999) ((|NewSparseUnivariatePolynomial| . |Functorial|) 145983) ((|NewSparseUnivariatePolynomial| . |AbelianMonoidRing|) 145944) ((|NewSparseUnivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 145928) ((|NewSparseUnivariatePolynomial| . |LinearlyExplicitRingOver|) 145844) ((|NewSparseUnivariatePolynomial| . |PartialDifferentialRing|) 145742) ((|NewSparseUnivariatePolynomial| . |PartialDifferentialDomain|) 145578) ((|NewSparseUnivariatePolynomial| . |PartialDifferentialSpace|) 145418) ((|NewSparseUnivariatePolynomial| . |PatternMatchable|) NIL) ((|NewSparseUnivariatePolynomial| . |PolynomialFactorizationExplicit|) 145368) ((|NewSparseUnivariatePolynomial| . |UniqueFactorizationDomain|) 145318) ((|NewSparseUnivariatePolynomial| . |PolynomialCategory|) 145253) ((|NewSparseUnivariatePolynomial| . |PrincipalIdealDomain|) 145229) ((|NewSparseUnivariatePolynomial| . |IntegralDomain|) 145092) ((|NewSparseUnivariatePolynomial| . |EntireRing|) 144955) ((|NewSparseUnivariatePolynomial| . |CommutativeRing|) 144785) ((|NewSparseUnivariatePolynomial| . |GcdDomain|) 144680) ((|NewSparseUnivariatePolynomial| . |EuclideanDomain|) 144656) ((|NewSparseUnivariatePolynomial| . |Eltable|) 144559) ((|NewSparseUnivariatePolynomial| . |DifferentialRing|) T) ((|NewSparseUnivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|NewSparseUnivariatePolynomial| . |AbelianSemiGroup|) T) ((|NewSparseUnivariatePolynomial| . |BasicType|) T) ((|NewSparseUnivariatePolynomial| . |CoercibleTo|) 144489) ((|NewSparseUnivariatePolynomial| . |SetCategory|) T) ((|NewSparseUnivariatePolynomial| . |AbelianMonoid|) T) ((|NewSparseUnivariatePolynomial| . |AbelianGroup|) T) ((|NewSparseUnivariatePolynomial| . |Rng|) T) ((|NewSparseUnivariatePolynomial| . |SemiGroup|) T) ((|NewSparseUnivariatePolynomial| . |SemiRing|) T) ((|NewSparseUnivariatePolynomial| . |Monoid|) T) ((|NewSparseUnivariatePolynomial| . |Ring|) T) ((|NewSparseUnivariatePolynomial| . |DifferentialDomain|) 144476) ((|NewSparseUnivariatePolynomial| . |Join|) T) ((|NewSparseUnivariatePolynomial| . |Type|) T) ((|NewSparseUnivariatePolynomial| . |DifferentialSpace|) T) ((|NewSparseUnivariatePolynomial| . |DifferentialSpaceExtension|) 144460) ((|NewSparseUnivariatePolynomial| . |DifferentialExtension|) 144444) ((|NewSparseMultivariatePolynomial| . |RecursivePolynomialCategory|) 144397) ((|NewSparseMultivariatePolynomial| . |ConvertibleTo|) 143836) ((|NewSparseMultivariatePolynomial| . |Evalable|) 143823) ((|NewSparseMultivariatePolynomial| . |InnerEvalable|) 143775) ((|NewSparseMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 143733) ((|NewSparseMultivariatePolynomial| . |RetractableTo|) 143513) ((|NewSparseMultivariatePolynomial| . |FullyRetractableTo|) 143497) ((|NewSparseMultivariatePolynomial| . |Algebra|) 143260) ((|NewSparseMultivariatePolynomial| . |CoercibleFrom|) 142905) ((|NewSparseMultivariatePolynomial| . |LeftModule|) 142734) ((|NewSparseMultivariatePolynomial| . |LeftLinearSet|) 142611) ((|NewSparseMultivariatePolynomial| . |Rng|) T) ((|NewSparseMultivariatePolynomial| . |SemiGroup|) T) ((|NewSparseMultivariatePolynomial| . |SemiRing|) T) ((|NewSparseMultivariatePolynomial| . |Monoid|) T) ((|NewSparseMultivariatePolynomial| . |Ring|) T) ((|NewSparseMultivariatePolynomial| . |BiModule|) 142354) ((|NewSparseMultivariatePolynomial| . |RightLinearSet|) 142111) ((|NewSparseMultivariatePolynomial| . |RightModule|) 141868) ((|NewSparseMultivariatePolynomial| . |AbelianGroup|) T) ((|NewSparseMultivariatePolynomial| . |AbelianMonoid|) T) ((|NewSparseMultivariatePolynomial| . |SetCategory|) T) ((|NewSparseMultivariatePolynomial| . |CoercibleTo|) 141727) ((|NewSparseMultivariatePolynomial| . |Type|) T) ((|NewSparseMultivariatePolynomial| . |Join|) T) ((|NewSparseMultivariatePolynomial| . |BasicType|) T) ((|NewSparseMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|NewSparseMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|NewSparseMultivariatePolynomial| . |LinearSet|) 141490) ((|NewSparseMultivariatePolynomial| . |Module|) 141253) ((|NewSparseMultivariatePolynomial| . |CharacteristicNonZero|) 141213) ((|NewSparseMultivariatePolynomial| . |CharacteristicZero|) 141176) ((|NewSparseMultivariatePolynomial| . |CommutativeRing|) 141029) ((|NewSparseMultivariatePolynomial| . |Functorial|) 141013) ((|NewSparseMultivariatePolynomial| . |IntegralDomain|) 140899) ((|NewSparseMultivariatePolynomial| . |EntireRing|) 140785) ((|NewSparseMultivariatePolynomial| . |AbelianMonoidRing|) 140743) ((|NewSparseMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 140727) ((|NewSparseMultivariatePolynomial| . |LinearlyExplicitRingOver|) 140643) ((|NewSparseMultivariatePolynomial| . |GcdDomain|) 140561) ((|NewSparseMultivariatePolynomial| . |PartialDifferentialRing|) 140545) ((|NewSparseMultivariatePolynomial| . |PartialDifferentialDomain|) 140527) ((|NewSparseMultivariatePolynomial| . |PartialDifferentialSpace|) 140511) ((|NewSparseMultivariatePolynomial| . |PatternMatchable|) 140290) ((|NewSparseMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 140240) ((|NewSparseMultivariatePolynomial| . |UniqueFactorizationDomain|) 140190) ((|NewSparseMultivariatePolynomial| . |PolynomialCategory|) 140143) ((|None| . |SetCategory|) T) ((|None| . |CoercibleTo|) 140117) ((|None| . |Type|) T) ((|None| . |Join|) T) ((|None| . |BasicType|) T) ((|NonNegativeInteger| . |OrderedAbelianMonoidSup|) T) ((|NonNegativeInteger| . |CancellationAbelianMonoid|) T) ((|NonNegativeInteger| . |AbelianSemiGroup|) T) ((|NonNegativeInteger| . |BasicType|) T) ((|NonNegativeInteger| . |Join|) T) ((|NonNegativeInteger| . |Type|) T) ((|NonNegativeInteger| . |CoercibleTo|) 140091) ((|NonNegativeInteger| . |SetCategory|) T) ((|NonNegativeInteger| . |AbelianMonoid|) T) ((|NonNegativeInteger| . |OrderedAbelianMonoid|) T) ((|NonNegativeInteger| . |OrderedSet|) T) ((|NonNegativeInteger| . |OrderedType|) T) ((|NonNegativeInteger| . |OrderedAbelianSemiGroup|) T) ((|NonNegativeInteger| . |OrderedCancellationAbelianMonoid|) T) ((|NonNegativeInteger| . |Monoid|) T) ((|NonNegativeInteger| . |SemiGroup|) T) ((|Multiset| . |MultisetAggregate|) 140075) ((|Multiset| . |SetAggregate|) 140059) ((|Multiset| . |DictionaryOperations|) 140043) ((|Multiset| . |ConvertibleTo|) 139979) ((|Multiset| . |Collection|) 139963) ((|Multiset| . |HomogeneousAggregate|) 139947) ((|Multiset| . |SetCategory|) T) ((|Multiset| . |Functorial|) 139931) ((|Multiset| . |InnerEvalable|) 139850) ((|Multiset| . |Evalable|) 139774) ((|Multiset| . |CoercibleTo|) 139748) ((|Multiset| . |BasicType|) T) ((|Multiset| . |Type|) T) ((|Multiset| . |Join|) T) ((|Multiset| . |Aggregate|) T) ((|Multiset| . |ShallowlyMutableAggregate|) 139732) ((|Multiset| . |BagAggregate|) 139716) ((|Multiset| . |MultiDictionary|) 139700) ((|Multiset| . |FiniteAggregate|) 139684) ((|MonoidRing| . |Ring|) T) ((|MonoidRing| . |Monoid|) T) ((|MonoidRing| . |SemiRing|) T) ((|MonoidRing| . |SemiGroup|) T) ((|MonoidRing| . |Rng|) T) ((|MonoidRing| . |AbelianGroup|) T) ((|MonoidRing| . |LeftLinearSet|) 139611) ((|MonoidRing| . |AbelianMonoid|) T) ((|MonoidRing| . |SetCategory|) T) ((|MonoidRing| . |CoercibleTo|) 139585) ((|MonoidRing| . |Type|) T) ((|MonoidRing| . |Join|) T) ((|MonoidRing| . |BasicType|) T) ((|MonoidRing| . |AbelianSemiGroup|) T) ((|MonoidRing| . |CancellationAbelianMonoid|) T) ((|MonoidRing| . |LeftModule|) 139532) ((|MonoidRing| . |CoercibleFrom|) 139483) ((|MonoidRing| . |RetractableTo|) 139454) ((|MonoidRing| . |Functorial|) 139438) ((|MonoidRing| . |CharacteristicZero|) 139401) ((|MonoidRing| . |CharacteristicNonZero|) 139361) ((|MonoidRing| . |Algebra|) 139318) ((|MonoidRing| . |BiModule|) 139270) ((|MonoidRing| . |RightLinearSet|) 139227) ((|MonoidRing| . |RightModule|) 139184) ((|MonoidRing| . |LinearSet|) 139141) ((|MonoidRing| . |Module|) 139098) ((|MonoidRing| . |Finite|) 139043) ((|MultivariatePolynomial| . |PolynomialCategory|) 138970) ((|MultivariatePolynomial| . |CoercibleFrom|) 138642) ((|MultivariatePolynomial| . |RetractableTo|) 138449) ((|MultivariatePolynomial| . |UniqueFactorizationDomain|) 138399) ((|MultivariatePolynomial| . |PolynomialFactorizationExplicit|) 138349) ((|MultivariatePolynomial| . |PatternMatchable|) NIL) ((|MultivariatePolynomial| . |PartialDifferentialSpace|) 138309) ((|MultivariatePolynomial| . |PartialDifferentialDomain|) 138267) ((|MultivariatePolynomial| . |PartialDifferentialRing|) 138227) ((|MultivariatePolynomial| . |InnerEvalable|) 138153) ((|MultivariatePolynomial| . |GcdDomain|) 138071) ((|MultivariatePolynomial| . |LinearlyExplicitRingOver|) 137987) ((|MultivariatePolynomial| . |LeftModule|) 137816) ((|MultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 137800) ((|MultivariatePolynomial| . |AbelianMonoidRing|) 137734) ((|MultivariatePolynomial| . |Algebra|) 137497) ((|MultivariatePolynomial| . |LinearSet|) 137260) ((|MultivariatePolynomial| . |Module|) 137023) ((|MultivariatePolynomial| . |EntireRing|) 136909) ((|MultivariatePolynomial| . |IntegralDomain|) 136795) ((|MultivariatePolynomial| . |Functorial|) 136779) ((|MultivariatePolynomial| . |BiModule|) 136522) ((|MultivariatePolynomial| . |RightLinearSet|) 136279) ((|MultivariatePolynomial| . |RightModule|) 136036) ((|MultivariatePolynomial| . |CommutativeRing|) 135889) ((|MultivariatePolynomial| . |CharacteristicZero|) 135852) ((|MultivariatePolynomial| . |CharacteristicNonZero|) 135812) ((|MultivariatePolynomial| . |LeftLinearSet|) 135689) ((|MultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|MultivariatePolynomial| . |AbelianSemiGroup|) T) ((|MultivariatePolynomial| . |BasicType|) T) ((|MultivariatePolynomial| . |Join|) T) ((|MultivariatePolynomial| . |Type|) T) ((|MultivariatePolynomial| . |CoercibleTo|) 135663) ((|MultivariatePolynomial| . |SetCategory|) T) ((|MultivariatePolynomial| . |AbelianMonoid|) T) ((|MultivariatePolynomial| . |AbelianGroup|) T) ((|MultivariatePolynomial| . |Ring|) T) ((|MultivariatePolynomial| . |Monoid|) T) ((|MultivariatePolynomial| . |SemiRing|) T) ((|MultivariatePolynomial| . |SemiGroup|) T) ((|MultivariatePolynomial| . |Rng|) T) ((|MultivariatePolynomial| . |FullyRetractableTo|) 135647) ((|MultivariatePolynomial| . |FiniteAbelianMonoidRing|) 135581) ((|MultivariatePolynomial| . |Evalable|) 135568) ((|MultivariatePolynomial| . |ConvertibleTo|) 135346) ((|MonoidOperation| . |MonoidOperatorCategory|) 135330) ((|MonoidOperation| . |BinaryOperatorCategory|) 135314) ((|MonoidOperation| . |Type|) T) ((|MonoidOperation| . |MappingCategory|) 135288) ((|MonoidOperation| . |SemiGroupOperatorCategory|) 135272) ((|MonoidOperation| . |SetCategory|) T) ((|MonoidOperation| . |CoercibleTo|) 135210) ((|MonoidOperation| . |Join|) T) ((|MonoidOperation| . |BasicType|) T) ((|MoebiusTransform| . |Group|) T) ((|MoebiusTransform| . |SemiGroup|) T) ((|MoebiusTransform| . |BasicType|) T) ((|MoebiusTransform| . |Join|) T) ((|MoebiusTransform| . |Type|) T) ((|MoebiusTransform| . |CoercibleTo|) 135184) ((|MoebiusTransform| . |SetCategory|) T) ((|MoebiusTransform| . |Monoid|) T) ((|ModularRing| . |Ring|) T) ((|ModularRing| . |Monoid|) T) ((|ModularRing| . |SemiRing|) T) ((|ModularRing| . |SemiGroup|) T) ((|ModularRing| . |Rng|) T) ((|ModularRing| . |AbelianGroup|) T) ((|ModularRing| . |LeftLinearSet|) 135151) ((|ModularRing| . |AbelianMonoid|) T) ((|ModularRing| . |SetCategory|) T) ((|ModularRing| . |CoercibleTo|) 135112) ((|ModularRing| . |Type|) T) ((|ModularRing| . |Join|) T) ((|ModularRing| . |BasicType|) T) ((|ModularRing| . |AbelianSemiGroup|) T) ((|ModularRing| . |CancellationAbelianMonoid|) T) ((|ModularRing| . |LeftModule|) 135099) ((|ModularRing| . |CoercibleFrom|) 135076) ((|ModuleOperator| . |Ring|) T) ((|ModuleOperator| . |Monoid|) T) ((|ModuleOperator| . |SemiRing|) T) ((|ModuleOperator| . |SemiGroup|) T) ((|ModuleOperator| . |Rng|) T) ((|ModuleOperator| . |AbelianGroup|) T) ((|ModuleOperator| . |LeftLinearSet|) 135003) ((|ModuleOperator| . |AbelianMonoid|) T) ((|ModuleOperator| . |SetCategory|) T) ((|ModuleOperator| . |CoercibleTo|) 134977) ((|ModuleOperator| . |Type|) T) ((|ModuleOperator| . |Join|) T) ((|ModuleOperator| . |BasicType|) T) ((|ModuleOperator| . |AbelianSemiGroup|) T) ((|ModuleOperator| . |CancellationAbelianMonoid|) T) ((|ModuleOperator| . |LeftModule|) 134924) ((|ModuleOperator| . |CoercibleFrom|) 134862) ((|ModuleOperator| . |RetractableTo|) 134820) ((|ModuleOperator| . |Eltable|) 134799) ((|ModuleOperator| . |CharacteristicZero|) 134762) ((|ModuleOperator| . |CharacteristicNonZero|) 134722) ((|ModuleOperator| . |Algebra|) 134679) ((|ModuleOperator| . |BiModule|) 134631) ((|ModuleOperator| . |RightLinearSet|) 134588) ((|ModuleOperator| . |RightModule|) 134545) ((|ModuleOperator| . |LinearSet|) 134502) ((|ModuleOperator| . |Module|) 134459) ((|ModuleMonomial| . |OrderedSet|) T) ((|ModuleMonomial| . |CoercibleTo|) 134373) ((|ModuleMonomial| . |SetCategory|) T) ((|ModuleMonomial| . |BasicType|) T) ((|ModuleMonomial| . |Join|) T) ((|ModuleMonomial| . |Type|) T) ((|ModuleMonomial| . |OrderedType|) T) ((|ModuleMonomial| . |HomotopicTo|) 134310) ((|ModuleMonomial| . |CoercibleFrom|) 134247) ((|ModMonic| . |UnivariatePolynomialCategory|) 134231) ((|ModMonic| . |StepThrough|) 134201) ((|ModMonic| . |ConvertibleTo|) NIL) ((|ModMonic| . |Evalable|) 134188) ((|ModMonic| . |InnerEvalable|) 134117) ((|ModMonic| . |FiniteAbelianMonoidRing|) 134078) ((|ModMonic| . |RetractableTo|) 133888) ((|ModMonic| . |FullyRetractableTo|) 133872) ((|ModMonic| . |Algebra|) 133612) ((|ModMonic| . |BiModule|) 133332) ((|ModMonic| . |RightLinearSet|) 133066) ((|ModMonic| . |RightModule|) 132800) ((|ModMonic| . |LeftLinearSet|) 132677) ((|ModMonic| . |LeftModule|) 132506) ((|ModMonic| . |LinearSet|) 132246) ((|ModMonic| . |Module|) 131986) ((|ModMonic| . |CoercibleFrom|) 131625) ((|ModMonic| . |CharacteristicNonZero|) 131585) ((|ModMonic| . |CharacteristicZero|) 131548) ((|ModMonic| . |Functorial|) 131532) ((|ModMonic| . |AbelianMonoidRing|) 131493) ((|ModMonic| . |FullyLinearlyExplicitRingOver|) 131477) ((|ModMonic| . |LinearlyExplicitRingOver|) 131393) ((|ModMonic| . |PartialDifferentialRing|) 131291) ((|ModMonic| . |PartialDifferentialDomain|) 131127) ((|ModMonic| . |PartialDifferentialSpace|) 130967) ((|ModMonic| . |PatternMatchable|) NIL) ((|ModMonic| . |PolynomialFactorizationExplicit|) 130917) ((|ModMonic| . |UniqueFactorizationDomain|) 130867) ((|ModMonic| . |PolynomialCategory|) 130802) ((|ModMonic| . |PrincipalIdealDomain|) 130778) ((|ModMonic| . |IntegralDomain|) 130641) ((|ModMonic| . |EntireRing|) 130504) ((|ModMonic| . |CommutativeRing|) 130334) ((|ModMonic| . |GcdDomain|) 130229) ((|ModMonic| . |EuclideanDomain|) 130205) ((|ModMonic| . |Eltable|) 130108) ((|ModMonic| . |DifferentialRing|) T) ((|ModMonic| . |CancellationAbelianMonoid|) T) ((|ModMonic| . |AbelianSemiGroup|) T) ((|ModMonic| . |BasicType|) T) ((|ModMonic| . |CoercibleTo|) 130082) ((|ModMonic| . |SetCategory|) T) ((|ModMonic| . |AbelianMonoid|) T) ((|ModMonic| . |AbelianGroup|) T) ((|ModMonic| . |Rng|) T) ((|ModMonic| . |SemiGroup|) T) ((|ModMonic| . |SemiRing|) T) ((|ModMonic| . |Monoid|) T) ((|ModMonic| . |Ring|) T) ((|ModMonic| . |DifferentialDomain|) 130069) ((|ModMonic| . |Join|) T) ((|ModMonic| . |Type|) T) ((|ModMonic| . |DifferentialSpace|) T) ((|ModMonic| . |DifferentialSpaceExtension|) 130053) ((|ModMonic| . |DifferentialExtension|) 130037) ((|ModMonic| . |Finite|) 130012) ((|ModularField| . |Field|) T) ((|ModularField| . |UniqueFactorizationDomain|) T) ((|ModularField| . |PrincipalIdealDomain|) T) ((|ModularField| . |IntegralDomain|) T) ((|ModularField| . |CommutativeRing|) T) ((|ModularField| . |CoercibleFrom|) 129946) ((|ModularField| . |Module|) 129900) ((|ModularField| . |LinearSet|) 129854) ((|ModularField| . |Algebra|) 129808) ((|ModularField| . |GcdDomain|) T) ((|ModularField| . |EuclideanDomain|) T) ((|ModularField| . |LeftModule|) 129762) ((|ModularField| . |LeftLinearSet|) 129696) ((|ModularField| . |Rng|) T) ((|ModularField| . |SemiGroup|) T) ((|ModularField| . |SemiRing|) T) ((|ModularField| . |Monoid|) T) ((|ModularField| . |Ring|) T) ((|ModularField| . |BiModule|) 129641) ((|ModularField| . |RightLinearSet|) 129595) ((|ModularField| . |RightModule|) 129549) ((|ModularField| . |AbelianGroup|) T) ((|ModularField| . |AbelianMonoid|) T) ((|ModularField| . |SetCategory|) T) ((|ModularField| . |CoercibleTo|) 129510) ((|ModularField| . |Type|) T) ((|ModularField| . |Join|) T) ((|ModularField| . |BasicType|) T) ((|ModularField| . |AbelianSemiGroup|) T) ((|ModularField| . |CancellationAbelianMonoid|) T) ((|ModularField| . |EntireRing|) T) ((|ModularField| . |DivisionRing|) T) ((|MathMLFormat| . |SetCategory|) T) ((|MathMLFormat| . |CoercibleTo|) 129484) ((|MathMLFormat| . |Type|) T) ((|MathMLFormat| . |Join|) T) ((|MathMLFormat| . |BasicType|) T) ((|Maybe| . |UnionType|) T) ((|Maybe| . |RetractableTo|) 129468) ((|Maybe| . |CoercibleFrom|) 129452) ((|Maybe| . |CoercibleTo|) 129394) ((|Matrix| . |MatrixCategory|) 129355) ((|Matrix| . |FiniteAggregate|) 129339) ((|Matrix| . |Aggregate|) T) ((|Matrix| . |Join|) T) ((|Matrix| . |Type|) T) ((|Matrix| . |BasicType|) 129277) ((|Matrix| . |CoercibleTo|) 129179) ((|Matrix| . |Evalable|) 129103) ((|Matrix| . |InnerEvalable|) 129022) ((|Matrix| . |Functorial|) 129006) ((|Matrix| . |SetCategory|) 128976) ((|Matrix| . |HomogeneousAggregate|) 128960) ((|Matrix| . |ShallowlyMutableAggregate|) 128944) ((|Matrix| . |TwoDimensionalArrayCategory|) 128905) ((|Matrix| . |ConvertibleTo|) 128846) ((|MappingAst| . |SpadSyntaxCategory|) T) ((|MappingAst| . |HomotopicTo|) 128824) ((|MappingAst| . |CoercibleTo|) 128759) ((|MappingAst| . |CoercibleFrom|) 128737) ((|MappingAst| . |SetCategory|) T) ((|MappingAst| . |Type|) T) ((|MappingAst| . |Join|) T) ((|MappingAst| . |BasicType|) T) ((|MappingAst| . |AbstractSyntaxCategory|) T) ((|MacroAst| . |SpadSyntaxCategory|) T) ((|MacroAst| . |HomotopicTo|) 128715) ((|MacroAst| . |CoercibleTo|) 128670) ((|MacroAst| . |CoercibleFrom|) 128648) ((|MacroAst| . |SetCategory|) T) ((|MacroAst| . |Type|) T) ((|MacroAst| . |Join|) T) ((|MacroAst| . |BasicType|) T) ((|MacroAst| . |AbstractSyntaxCategory|) T) ((|LyndonWord| . |OrderedSet|) T) ((|LyndonWord| . |CoercibleTo|) 128560) ((|LyndonWord| . |SetCategory|) T) ((|LyndonWord| . |BasicType|) T) ((|LyndonWord| . |Join|) T) ((|LyndonWord| . |Type|) T) ((|LyndonWord| . |OrderedType|) T) ((|LyndonWord| . |RetractableTo|) 128544) ((|LyndonWord| . |CoercibleFrom|) 128528) ((|ConstructAst| . |SpadSyntaxCategory|) T) ((|ConstructAst| . |HomotopicTo|) 128506) ((|ConstructAst| . |CoercibleTo|) 128461) ((|ConstructAst| . |CoercibleFrom|) 128439) ((|ConstructAst| . |SetCategory|) T) ((|ConstructAst| . |Type|) T) ((|ConstructAst| . |Join|) T) ((|ConstructAst| . |BasicType|) T) ((|ConstructAst| . |AbstractSyntaxCategory|) T) ((|LieSquareMatrix| . |SquareMatrixCategory|) 128383) ((|LieSquareMatrix| . |FiniteAggregate|) 128367) ((|LieSquareMatrix| . |Aggregate|) T) ((|LieSquareMatrix| . |Evalable|) 128291) ((|LieSquareMatrix| . |InnerEvalable|) 128210) ((|LieSquareMatrix| . |Functorial|) 128194) ((|LieSquareMatrix| . |HomogeneousAggregate|) 128178) ((|LieSquareMatrix| . |RectangularMatrixCategory|) 128117) ((|LieSquareMatrix| . |RetractableTo|) 127961) ((|LieSquareMatrix| . |CoercibleFrom|) 127842) ((|LieSquareMatrix| . |FullyRetractableTo|) 127826) ((|LieSquareMatrix| . |LinearlyExplicitRingOver|) 127742) ((|LieSquareMatrix| . |LeftModule|) 127648) ((|LieSquareMatrix| . |FullyLinearlyExplicitRingOver|) 127632) ((|LieSquareMatrix| . |DifferentialRing|) 127597) ((|LieSquareMatrix| . |DifferentialDomain|) 127516) ((|LieSquareMatrix| . |DifferentialSpace|) 127441) ((|LieSquareMatrix| . |DifferentialSpaceExtension|) 127425) ((|LieSquareMatrix| . |PartialDifferentialDomain|) 127297) ((|LieSquareMatrix| . |PartialDifferentialSpace|) 127171) ((|LieSquareMatrix| . |PartialDifferentialRing|) 127103) ((|LieSquareMatrix| . |DifferentialExtension|) 127087) ((|LieSquareMatrix| . |Module|) 127071) ((|LieSquareMatrix| . |LinearSet|) 127055) ((|LieSquareMatrix| . |LeftLinearSet|) 127009) ((|LieSquareMatrix| . |CancellationAbelianMonoid|) T) ((|LieSquareMatrix| . |AbelianSemiGroup|) T) ((|LieSquareMatrix| . |BasicType|) T) ((|LieSquareMatrix| . |Join|) T) ((|LieSquareMatrix| . |Type|) T) ((|LieSquareMatrix| . |CoercibleTo|) 126959) ((|LieSquareMatrix| . |SetCategory|) T) ((|LieSquareMatrix| . |AbelianMonoid|) T) ((|LieSquareMatrix| . |AbelianGroup|) T) ((|LieSquareMatrix| . |RightModule|) 126943) ((|LieSquareMatrix| . |RightLinearSet|) 126927) ((|LieSquareMatrix| . |BiModule|) 126906) ((|LieSquareMatrix| . |Ring|) T) ((|LieSquareMatrix| . |Monoid|) T) ((|LieSquareMatrix| . |SemiRing|) T) ((|LieSquareMatrix| . |SemiGroup|) T) ((|LieSquareMatrix| . |Rng|) T) ((|LieSquareMatrix| . |Algebra|) 126851) ((|LieSquareMatrix| . |FramedNonAssociativeAlgebra|) 126835) ((|LieSquareMatrix| . |NonAssociativeAlgebra|) 126819) ((|LieSquareMatrix| . |Monad|) T) ((|LieSquareMatrix| . |NonAssociativeRng|) T) ((|LieSquareMatrix| . |FiniteRankNonAssociativeAlgebra|) 126803) ((|LieSquareMatrix| . |Eltable|) 126775) ((|LiePolynomial| . |FreeLieAlgebra|) 126754) ((|LiePolynomial| . |Module|) 126738) ((|LiePolynomial| . |LinearSet|) 126722) ((|LiePolynomial| . |LeftModule|) 126706) ((|LiePolynomial| . |LeftLinearSet|) 126670) ((|LiePolynomial| . |CancellationAbelianMonoid|) T) ((|LiePolynomial| . |AbelianSemiGroup|) T) ((|LiePolynomial| . |BasicType|) T) ((|LiePolynomial| . |Join|) T) ((|LiePolynomial| . |Type|) T) ((|LiePolynomial| . |CoercibleTo|) 126556) ((|LiePolynomial| . |SetCategory|) T) ((|LiePolynomial| . |AbelianMonoid|) T) ((|LiePolynomial| . |AbelianGroup|) T) ((|LiePolynomial| . |RightModule|) 126540) ((|LiePolynomial| . |RightLinearSet|) 126524) ((|LiePolynomial| . |BiModule|) 126503) ((|LiePolynomial| . |LieAlgebra|) 126487) ((|LiePolynomial| . |FreeModuleCat|) 126451) ((|LiePolynomial| . |CoercibleFrom|) 126420) ((|LiePolynomial| . |RetractableTo|) 126389) ((|LiePolynomial| . |Functorial|) 126373) ((|LinearOrdinaryDifferentialOperator2| . |LinearOrdinaryDifferentialOperatorCategory|) 126357) ((|LinearOrdinaryDifferentialOperator2| . |Algebra|) 126314) ((|LinearOrdinaryDifferentialOperator2| . |CoercibleFrom|) 126195) ((|LinearOrdinaryDifferentialOperator2| . |LeftModule|) 126169) ((|LinearOrdinaryDifferentialOperator2| . |LeftLinearSet|) 126123) ((|LinearOrdinaryDifferentialOperator2| . |Rng|) T) ((|LinearOrdinaryDifferentialOperator2| . |SemiGroup|) T) ((|LinearOrdinaryDifferentialOperator2| . |SemiRing|) T) ((|LinearOrdinaryDifferentialOperator2| . |Monoid|) T) ((|LinearOrdinaryDifferentialOperator2| . |Ring|) T) ((|LinearOrdinaryDifferentialOperator2| . |BiModule|) 126102) ((|LinearOrdinaryDifferentialOperator2| . |RightLinearSet|) 126086) ((|LinearOrdinaryDifferentialOperator2| . |RightModule|) 126070) ((|LinearOrdinaryDifferentialOperator2| . |AbelianGroup|) T) ((|LinearOrdinaryDifferentialOperator2| . |AbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator2| . |SetCategory|) T) ((|LinearOrdinaryDifferentialOperator2| . |CoercibleTo|) 126044) ((|LinearOrdinaryDifferentialOperator2| . |BasicType|) T) ((|LinearOrdinaryDifferentialOperator2| . |AbelianSemiGroup|) T) ((|LinearOrdinaryDifferentialOperator2| . |CancellationAbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator2| . |LinearSet|) 126001) ((|LinearOrdinaryDifferentialOperator2| . |Module|) 125958) ((|LinearOrdinaryDifferentialOperator2| . |FullyRetractableTo|) 125942) ((|LinearOrdinaryDifferentialOperator2| . |RetractableTo|) 125786) ((|LinearOrdinaryDifferentialOperator2| . |UnivariateSkewPolynomialCategory|) 125770) ((|LinearOrdinaryDifferentialOperator2| . |Type|) T) ((|LinearOrdinaryDifferentialOperator2| . |Join|) T) ((|LinearOrdinaryDifferentialOperator2| . |Eltable|) 125731) ((|LinearOrdinaryDifferentialOperator1| . |LinearOrdinaryDifferentialOperatorCategory|) 125715) ((|LinearOrdinaryDifferentialOperator1| . |Algebra|) 125672) ((|LinearOrdinaryDifferentialOperator1| . |CoercibleFrom|) 125553) ((|LinearOrdinaryDifferentialOperator1| . |LeftModule|) 125527) ((|LinearOrdinaryDifferentialOperator1| . |LeftLinearSet|) 125481) ((|LinearOrdinaryDifferentialOperator1| . |Rng|) T) ((|LinearOrdinaryDifferentialOperator1| . |SemiGroup|) T) ((|LinearOrdinaryDifferentialOperator1| . |SemiRing|) T) ((|LinearOrdinaryDifferentialOperator1| . |Monoid|) T) ((|LinearOrdinaryDifferentialOperator1| . |Ring|) T) ((|LinearOrdinaryDifferentialOperator1| . |BiModule|) 125460) ((|LinearOrdinaryDifferentialOperator1| . |RightLinearSet|) 125444) ((|LinearOrdinaryDifferentialOperator1| . |RightModule|) 125428) ((|LinearOrdinaryDifferentialOperator1| . |AbelianGroup|) T) ((|LinearOrdinaryDifferentialOperator1| . |AbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator1| . |SetCategory|) T) ((|LinearOrdinaryDifferentialOperator1| . |CoercibleTo|) 125402) ((|LinearOrdinaryDifferentialOperator1| . |BasicType|) T) ((|LinearOrdinaryDifferentialOperator1| . |AbelianSemiGroup|) T) ((|LinearOrdinaryDifferentialOperator1| . |CancellationAbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator1| . |LinearSet|) 125359) ((|LinearOrdinaryDifferentialOperator1| . |Module|) 125316) ((|LinearOrdinaryDifferentialOperator1| . |FullyRetractableTo|) 125300) ((|LinearOrdinaryDifferentialOperator1| . |RetractableTo|) 125144) ((|LinearOrdinaryDifferentialOperator1| . |UnivariateSkewPolynomialCategory|) 125128) ((|LinearOrdinaryDifferentialOperator1| . |Type|) T) ((|LinearOrdinaryDifferentialOperator1| . |Join|) T) ((|LinearOrdinaryDifferentialOperator1| . |Eltable|) 125107) ((|LinearOrdinaryDifferentialOperator| . |LinearOrdinaryDifferentialOperatorCategory|) 125091) ((|LinearOrdinaryDifferentialOperator| . |Algebra|) 125048) ((|LinearOrdinaryDifferentialOperator| . |CoercibleFrom|) 124929) ((|LinearOrdinaryDifferentialOperator| . |LeftModule|) 124903) ((|LinearOrdinaryDifferentialOperator| . |LeftLinearSet|) 124857) ((|LinearOrdinaryDifferentialOperator| . |Rng|) T) ((|LinearOrdinaryDifferentialOperator| . |SemiGroup|) T) ((|LinearOrdinaryDifferentialOperator| . |SemiRing|) T) ((|LinearOrdinaryDifferentialOperator| . |Monoid|) T) ((|LinearOrdinaryDifferentialOperator| . |Ring|) T) ((|LinearOrdinaryDifferentialOperator| . |BiModule|) 124836) ((|LinearOrdinaryDifferentialOperator| . |RightLinearSet|) 124820) ((|LinearOrdinaryDifferentialOperator| . |RightModule|) 124804) ((|LinearOrdinaryDifferentialOperator| . |AbelianGroup|) T) ((|LinearOrdinaryDifferentialOperator| . |AbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator| . |SetCategory|) T) ((|LinearOrdinaryDifferentialOperator| . |CoercibleTo|) 124778) ((|LinearOrdinaryDifferentialOperator| . |BasicType|) T) ((|LinearOrdinaryDifferentialOperator| . |AbelianSemiGroup|) T) ((|LinearOrdinaryDifferentialOperator| . |CancellationAbelianMonoid|) T) ((|LinearOrdinaryDifferentialOperator| . |LinearSet|) 124735) ((|LinearOrdinaryDifferentialOperator| . |Module|) 124692) ((|LinearOrdinaryDifferentialOperator| . |FullyRetractableTo|) 124676) ((|LinearOrdinaryDifferentialOperator| . |RetractableTo|) 124520) ((|LinearOrdinaryDifferentialOperator| . |UnivariateSkewPolynomialCategory|) 124504) ((|LinearOrdinaryDifferentialOperator| . |Type|) T) ((|LinearOrdinaryDifferentialOperator| . |Join|) T) ((|LinearOrdinaryDifferentialOperator| . |Eltable|) 124483) ((|Localize| . |Module|) 124467) ((|Localize| . |LinearSet|) 124451) ((|Localize| . |LeftModule|) 124435) ((|Localize| . |LeftLinearSet|) 124399) ((|Localize| . |CancellationAbelianMonoid|) T) ((|Localize| . |AbelianSemiGroup|) T) ((|Localize| . |BasicType|) T) ((|Localize| . |Join|) T) ((|Localize| . |Type|) T) ((|Localize| . |CoercibleTo|) 124373) ((|Localize| . |SetCategory|) T) ((|Localize| . |AbelianMonoid|) T) ((|Localize| . |AbelianGroup|) T) ((|Localize| . |RightModule|) 124357) ((|Localize| . |RightLinearSet|) 124341) ((|Localize| . |BiModule|) 124320) ((|Localize| . |OrderedAbelianGroup|) 124282) ((|Localize| . |OrderedAbelianMonoid|) 124244) ((|Localize| . |OrderedSet|) 124206) ((|Localize| . |OrderedType|) 124168) ((|Localize| . |OrderedAbelianSemiGroup|) 124130) ((|Localize| . |OrderedCancellationAbelianMonoid|) 124092) ((|ListMonoidOps| . |SetCategory|) T) ((|ListMonoidOps| . |CoercibleTo|) 124066) ((|ListMonoidOps| . |Type|) T) ((|ListMonoidOps| . |Join|) T) ((|ListMonoidOps| . |BasicType|) T) ((|ListMonoidOps| . |RetractableTo|) 124050) ((|ListMonoidOps| . |CoercibleFrom|) 124034) ((|ListMultiDictionary| . |MultiDictionary|) 124018) ((|ListMultiDictionary| . |BagAggregate|) 124002) ((|ListMultiDictionary| . |ShallowlyMutableAggregate|) 123986) ((|ListMultiDictionary| . |Aggregate|) T) ((|ListMultiDictionary| . |Join|) T) ((|ListMultiDictionary| . |Type|) T) ((|ListMultiDictionary| . |BasicType|) 123924) ((|ListMultiDictionary| . |CoercibleTo|) 123826) ((|ListMultiDictionary| . |Evalable|) 123750) ((|ListMultiDictionary| . |InnerEvalable|) 123669) ((|ListMultiDictionary| . |Functorial|) 123653) ((|ListMultiDictionary| . |SetCategory|) 123623) ((|ListMultiDictionary| . |HomogeneousAggregate|) 123607) ((|ListMultiDictionary| . |Collection|) 123591) ((|ListMultiDictionary| . |ConvertibleTo|) 123527) ((|ListMultiDictionary| . |DictionaryOperations|) 123511) ((|ListMultiDictionary| . |FiniteAggregate|) 123495) ((|Literal| . |SpadSyntaxCategory|) T) ((|Literal| . |HomotopicTo|) 123473) ((|Literal| . |CoercibleTo|) 123415) ((|Literal| . |CoercibleFrom|) 123393) ((|Literal| . |SetCategory|) T) ((|Literal| . |Type|) T) ((|Literal| . |Join|) T) ((|Literal| . |BasicType|) T) ((|Literal| . |AbstractSyntaxCategory|) T) ((|List| . |ListAggregate|) 123377) ((|List| . |UnaryRecursiveAggregate|) 123361) ((|List| . |RecursiveAggregate|) 123345) ((|List| . |StreamAggregate|) 123329) ((|List| . |FiniteAggregate|) 123313) ((|List| . |OrderedSet|) 123284) ((|List| . |OrderedType|) 123255) ((|List| . |FiniteLinearAggregate|) 123239) ((|List| . |LinearAggregate|) 123223) ((|List| . |EltableAggregate|) 123195) ((|List| . |Eltable|) 123124) ((|List| . |IndexedAggregate|) 123096) ((|List| . |ConvertibleTo|) 123032) ((|List| . |HomogeneousAggregate|) 123016) ((|List| . |SetCategory|) 122953) ((|List| . |Functorial|) 122937) ((|List| . |InnerEvalable|) 122856) ((|List| . |Evalable|) 122780) ((|List| . |CoercibleTo|) 122654) ((|List| . |BasicType|) 122564) ((|List| . |Type|) T) ((|List| . |Join|) T) ((|List| . |Aggregate|) T) ((|List| . |Collection|) 122548) ((|List| . |ShallowlyMutableAggregate|) 122532) ((|List| . |ExtensibleLinearAggregate|) 122516) ((|LinearForm| . |VectorSpace|) 122500) ((|LinearForm| . |BiModule|) 122479) ((|LinearForm| . |RightLinearSet|) 122463) ((|LinearForm| . |RightModule|) 122447) ((|LinearForm| . |AbelianGroup|) T) ((|LinearForm| . |LeftLinearSet|) 122411) ((|LinearForm| . |AbelianMonoid|) T) ((|LinearForm| . |SetCategory|) T) ((|LinearForm| . |CoercibleTo|) 122385) ((|LinearForm| . |Type|) T) ((|LinearForm| . |Join|) T) ((|LinearForm| . |BasicType|) T) ((|LinearForm| . |AbelianSemiGroup|) T) ((|LinearForm| . |CancellationAbelianMonoid|) T) ((|LinearForm| . |LeftModule|) 122369) ((|LinearForm| . |LinearSet|) 122353) ((|LinearForm| . |Module|) 122337) ((|LinearForm| . |Eltable|) 122293) ((|LinearElement| . |VectorSpace|) 122277) ((|LinearElement| . |BiModule|) 122256) ((|LinearElement| . |RightLinearSet|) 122240) ((|LinearElement| . |RightModule|) 122224) ((|LinearElement| . |AbelianGroup|) T) ((|LinearElement| . |LeftLinearSet|) 122188) ((|LinearElement| . |AbelianMonoid|) T) ((|LinearElement| . |SetCategory|) T) ((|LinearElement| . |CoercibleTo|) 122162) ((|LinearElement| . |Type|) T) ((|LinearElement| . |Join|) T) ((|LinearElement| . |BasicType|) T) ((|LinearElement| . |AbelianSemiGroup|) T) ((|LinearElement| . |CancellationAbelianMonoid|) T) ((|LinearElement| . |LeftModule|) 122146) ((|LinearElement| . |LinearSet|) 122130) ((|LinearElement| . |Module|) 122114) ((|LinearElement| . |CoercibleFrom|) 122082) ((|LinearElement| . |IndexedDirectProductCategory|) 122045) ((|LinearElement| . |Functorial|) 122029) ((|LinearElement| . |ConvertibleFrom|) 121960) ((|LinearBasis| . |OrderedFinite|) T) ((|LinearBasis| . |OrderedType|) T) ((|LinearBasis| . |OrderedSet|) T) ((|LinearBasis| . |SetCategory|) T) ((|LinearBasis| . |CoercibleTo|) 121934) ((|LinearBasis| . |Type|) T) ((|LinearBasis| . |Join|) T) ((|LinearBasis| . |BasicType|) T) ((|LinearBasis| . |Finite|) T) ((|LinearBasis| . |CoercibleFrom|) 121894) ((|AssociatedLieAlgebra| . |NonAssociativeAlgebra|) 121878) ((|AssociatedLieAlgebra| . |Monad|) T) ((|AssociatedLieAlgebra| . |NonAssociativeRng|) T) ((|AssociatedLieAlgebra| . |BiModule|) 121857) ((|AssociatedLieAlgebra| . |RightLinearSet|) 121841) ((|AssociatedLieAlgebra| . |RightModule|) 121825) ((|AssociatedLieAlgebra| . |AbelianGroup|) T) ((|AssociatedLieAlgebra| . |LeftLinearSet|) 121789) ((|AssociatedLieAlgebra| . |AbelianMonoid|) T) ((|AssociatedLieAlgebra| . |SetCategory|) T) ((|AssociatedLieAlgebra| . |CoercibleTo|) 121750) ((|AssociatedLieAlgebra| . |Type|) T) ((|AssociatedLieAlgebra| . |Join|) T) ((|AssociatedLieAlgebra| . |BasicType|) T) ((|AssociatedLieAlgebra| . |AbelianSemiGroup|) T) ((|AssociatedLieAlgebra| . |CancellationAbelianMonoid|) T) ((|AssociatedLieAlgebra| . |LeftModule|) 121734) ((|AssociatedLieAlgebra| . |LinearSet|) 121718) ((|AssociatedLieAlgebra| . |Module|) 121702) ((|AssociatedLieAlgebra| . |FramedNonAssociativeAlgebra|) 121638) ((|AssociatedLieAlgebra| . |FiniteRankNonAssociativeAlgebra|) 121519) ((|AssociatedLieAlgebra| . |Eltable|) 121447) ((|Library| . |TableAggregate|) 121417) ((|Library| . |Dictionary|) 121350) ((|Library| . |BagAggregate|) 121283) ((|Library| . |ShallowlyMutableAggregate|) 121201) ((|Library| . |Collection|) 121134) ((|Library| . |ConvertibleTo|) NIL) ((|Library| . |DictionaryOperations|) 121067) ((|Library| . |IndexedAggregate|) 121037) ((|Library| . |Evalable|) 120843) ((|Library| . |InnerEvalable|) 120642) ((|Library| . |Functorial|) 120560) ((|Library| . |HomogeneousAggregate|) 120478) ((|Library| . |Eltable|) 120422) ((|Library| . |EltableAggregate|) 120392) ((|Library| . |KeyedDictionary|) 120362) ((|Library| . |SetCategory|) T) ((|Library| . |CoercibleTo|) 120336) ((|Library| . |BasicType|) T) ((|Library| . |Type|) T) ((|Library| . |Join|) T) ((|Library| . |Aggregate|) T) ((|Library| . |FiniteAggregate|) 120269) ((|LieExponentials| . |Group|) T) ((|LieExponentials| . |SemiGroup|) T) ((|LieExponentials| . |BasicType|) T) ((|LieExponentials| . |Join|) T) ((|LieExponentials| . |Type|) T) ((|LieExponentials| . |CoercibleTo|) 120161) ((|LieExponentials| . |SetCategory|) T) ((|LieExponentials| . |Monoid|) T) ((|LetAst| . |SpadSyntaxCategory|) T) ((|LetAst| . |HomotopicTo|) 120139) ((|LetAst| . |CoercibleTo|) 120094) ((|LetAst| . |CoercibleFrom|) 120072) ((|LetAst| . |SetCategory|) T) ((|LetAst| . |Type|) T) ((|LetAst| . |Join|) T) ((|LetAst| . |BasicType|) T) ((|LetAst| . |AbstractSyntaxCategory|) T) ((|LaurentPolynomial| . |DifferentialExtension|) 120056) ((|LaurentPolynomial| . |PartialDifferentialRing|) 119988) ((|LaurentPolynomial| . |PartialDifferentialSpace|) 119862) ((|LaurentPolynomial| . |PartialDifferentialDomain|) 119734) ((|LaurentPolynomial| . |DifferentialSpaceExtension|) 119718) ((|LaurentPolynomial| . |DifferentialSpace|) 119643) ((|LaurentPolynomial| . |Type|) T) ((|LaurentPolynomial| . |Join|) T) ((|LaurentPolynomial| . |DifferentialDomain|) 119562) ((|LaurentPolynomial| . |Ring|) T) ((|LaurentPolynomial| . |Monoid|) T) ((|LaurentPolynomial| . |SemiRing|) T) ((|LaurentPolynomial| . |SemiGroup|) T) ((|LaurentPolynomial| . |Rng|) T) ((|LaurentPolynomial| . |AbelianGroup|) T) ((|LaurentPolynomial| . |LeftLinearSet|) 119529) ((|LaurentPolynomial| . |AbelianMonoid|) T) ((|LaurentPolynomial| . |SetCategory|) T) ((|LaurentPolynomial| . |CoercibleTo|) 119503) ((|LaurentPolynomial| . |BasicType|) T) ((|LaurentPolynomial| . |AbelianSemiGroup|) T) ((|LaurentPolynomial| . |CancellationAbelianMonoid|) T) ((|LaurentPolynomial| . |LeftModule|) 119490) ((|LaurentPolynomial| . |CoercibleFrom|) 119348) ((|LaurentPolynomial| . |DifferentialRing|) 119313) ((|LaurentPolynomial| . |IntegralDomain|) T) ((|LaurentPolynomial| . |EntireRing|) T) ((|LaurentPolynomial| . |CommutativeRing|) T) ((|LaurentPolynomial| . |Module|) 119300) ((|LaurentPolynomial| . |LinearSet|) 119287) ((|LaurentPolynomial| . |RightModule|) 119274) ((|LaurentPolynomial| . |RightLinearSet|) 119261) ((|LaurentPolynomial| . |BiModule|) 119246) ((|LaurentPolynomial| . |Algebra|) 119233) ((|LaurentPolynomial| . |ConvertibleTo|) 119204) ((|LaurentPolynomial| . |FullyRetractableTo|) 119188) ((|LaurentPolynomial| . |RetractableTo|) 119019) ((|LaurentPolynomial| . |CharacteristicZero|) 118982) ((|LaurentPolynomial| . |CharacteristicNonZero|) 118942) ((|LaurentPolynomial| . |EuclideanDomain|) 118918) ((|LaurentPolynomial| . |GcdDomain|) 118894) ((|LaurentPolynomial| . |PrincipalIdealDomain|) 118870) ((|LocalAlgebra| . |Algebra|) 118854) ((|LocalAlgebra| . |CoercibleFrom|) 118818) ((|LocalAlgebra| . |LeftModule|) 118792) ((|LocalAlgebra| . |LeftLinearSet|) 118746) ((|LocalAlgebra| . |Rng|) T) ((|LocalAlgebra| . |SemiGroup|) T) ((|LocalAlgebra| . |SemiRing|) T) ((|LocalAlgebra| . |Monoid|) T) ((|LocalAlgebra| . |Ring|) T) ((|LocalAlgebra| . |BiModule|) 118725) ((|LocalAlgebra| . |RightLinearSet|) 118709) ((|LocalAlgebra| . |RightModule|) 118693) ((|LocalAlgebra| . |AbelianGroup|) T) ((|LocalAlgebra| . |AbelianMonoid|) T) ((|LocalAlgebra| . |SetCategory|) T) ((|LocalAlgebra| . |CoercibleTo|) 118667) ((|LocalAlgebra| . |Type|) T) ((|LocalAlgebra| . |Join|) T) ((|LocalAlgebra| . |BasicType|) T) ((|LocalAlgebra| . |AbelianSemiGroup|) T) ((|LocalAlgebra| . |CancellationAbelianMonoid|) T) ((|LocalAlgebra| . |LinearSet|) 118651) ((|LocalAlgebra| . |Module|) 118635) ((|LocalAlgebra| . |OrderedRing|) 118605) ((|LocalAlgebra| . |OrderedCancellationAbelianMonoid|) 118575) ((|LocalAlgebra| . |OrderedAbelianSemiGroup|) 118545) ((|LocalAlgebra| . |OrderedType|) 118515) ((|LocalAlgebra| . |OrderedSet|) 118485) ((|LocalAlgebra| . |OrderedAbelianMonoid|) 118455) ((|LocalAlgebra| . |OrderedAbelianGroup|) 118425) ((|LocalAlgebra| . |CharacteristicZero|) 118395) ((|KleeneTrivalentLogic| . |PropositionalLogic|) T) ((|KleeneTrivalentLogic| . |BasicType|) T) ((|KleeneTrivalentLogic| . |CoercibleTo|) 118369) ((|KleeneTrivalentLogic| . |SetCategory|) T) ((|KleeneTrivalentLogic| . |Logic|) T) ((|KleeneTrivalentLogic| . |Join|) T) ((|KleeneTrivalentLogic| . |Type|) T) ((|KleeneTrivalentLogic| . |BooleanLogic|) T) ((|KleeneTrivalentLogic| . |Finite|) T) ((|Kernel| . |CachableSet|) T) ((|Kernel| . |BasicType|) T) ((|Kernel| . |Join|) T) ((|Kernel| . |Type|) T) ((|Kernel| . |CoercibleTo|) 118343) ((|Kernel| . |SetCategory|) T) ((|Kernel| . |OrderedSet|) T) ((|Kernel| . |OrderedType|) T) ((|Kernel| . |Patternable|) 118327) ((|Kernel| . |ConvertibleTo|) 118110) ((|KeyedAccessFile| . |FileCategory|) 118033) ((|KeyedAccessFile| . |BasicType|) T) ((|KeyedAccessFile| . |Join|) T) ((|KeyedAccessFile| . |Type|) T) ((|KeyedAccessFile| . |CoercibleTo|) 118007) ((|KeyedAccessFile| . |SetCategory|) T) ((|KeyedAccessFile| . |TableAggregate|) 117980) ((|KeyedAccessFile| . |Dictionary|) 117916) ((|KeyedAccessFile| . |BagAggregate|) 117852) ((|KeyedAccessFile| . |ShallowlyMutableAggregate|) 117775) ((|KeyedAccessFile| . |Collection|) 117711) ((|KeyedAccessFile| . |ConvertibleTo|) NIL) ((|KeyedAccessFile| . |DictionaryOperations|) 117647) ((|KeyedAccessFile| . |IndexedAggregate|) 117620) ((|KeyedAccessFile| . |Evalable|) 117362) ((|KeyedAccessFile| . |InnerEvalable|) 117092) ((|KeyedAccessFile| . |Functorial|) 117015) ((|KeyedAccessFile| . |HomogeneousAggregate|) 116938) ((|KeyedAccessFile| . |Eltable|) 116911) ((|KeyedAccessFile| . |EltableAggregate|) 116884) ((|KeyedAccessFile| . |KeyedDictionary|) 116857) ((|KeyedAccessFile| . |Aggregate|) T) ((|KeyedAccessFile| . |FiniteAggregate|) 116793) ((|JVMOpcode| . |SetCategory|) T) ((|JVMOpcode| . |CoercibleTo|) 116726) ((|JVMOpcode| . |Type|) T) ((|JVMOpcode| . |Join|) T) ((|JVMOpcode| . |BasicType|) T) ((|JVMOpcode| . |HomotopicTo|) 116682) ((|JVMOpcode| . |CoercibleFrom|) 116638) ((|JVMMethodAccess| . |SetCategory|) T) ((|JVMMethodAccess| . |CoercibleTo|) 116612) ((|JVMMethodAccess| . |Type|) T) ((|JVMMethodAccess| . |Join|) T) ((|JVMMethodAccess| . |BasicType|) T) ((|JVMMethodAccess| . |Logic|) T) ((|JVMFieldAccess| . |SetCategory|) T) ((|JVMFieldAccess| . |CoercibleTo|) 116586) ((|JVMFieldAccess| . |Type|) T) ((|JVMFieldAccess| . |Join|) T) ((|JVMFieldAccess| . |BasicType|) T) ((|JVMFieldAccess| . |Logic|) T) ((|JVMConstantTag| . |SetCategory|) T) ((|JVMConstantTag| . |CoercibleTo|) 116543) ((|JVMConstantTag| . |Type|) T) ((|JVMConstantTag| . |Join|) T) ((|JVMConstantTag| . |BasicType|) T) ((|JVMClassFileAccess| . |SetCategory|) T) ((|JVMClassFileAccess| . |CoercibleTo|) 116517) ((|JVMClassFileAccess| . |Type|) T) ((|JVMClassFileAccess| . |Join|) T) ((|JVMClassFileAccess| . |BasicType|) T) ((|JVMClassFileAccess| . |Logic|) T) ((|JVMBytecode| . |SetCategory|) T) ((|JVMBytecode| . |CoercibleTo|) 116474) ((|JVMBytecode| . |Type|) T) ((|JVMBytecode| . |Join|) T) ((|JVMBytecode| . |BasicType|) T) ((|JVMBytecode| . |HomotopicTo|) 116454) ((|JVMBytecode| . |CoercibleFrom|) 116434) ((|AssociatedJordanAlgebra| . |NonAssociativeAlgebra|) 116418) ((|AssociatedJordanAlgebra| . |Monad|) T) ((|AssociatedJordanAlgebra| . |NonAssociativeRng|) T) ((|AssociatedJordanAlgebra| . |BiModule|) 116397) ((|AssociatedJordanAlgebra| . |RightLinearSet|) 116381) ((|AssociatedJordanAlgebra| . |RightModule|) 116365) ((|AssociatedJordanAlgebra| . |AbelianGroup|) T) ((|AssociatedJordanAlgebra| . |LeftLinearSet|) 116329) ((|AssociatedJordanAlgebra| . |AbelianMonoid|) T) ((|AssociatedJordanAlgebra| . |SetCategory|) T) ((|AssociatedJordanAlgebra| . |CoercibleTo|) 116290) ((|AssociatedJordanAlgebra| . |Type|) T) ((|AssociatedJordanAlgebra| . |Join|) T) ((|AssociatedJordanAlgebra| . |BasicType|) T) ((|AssociatedJordanAlgebra| . |AbelianSemiGroup|) T) ((|AssociatedJordanAlgebra| . |CancellationAbelianMonoid|) T) ((|AssociatedJordanAlgebra| . |LeftModule|) 116274) ((|AssociatedJordanAlgebra| . |LinearSet|) 116258) ((|AssociatedJordanAlgebra| . |Module|) 116242) ((|AssociatedJordanAlgebra| . |FramedNonAssociativeAlgebra|) 116178) ((|AssociatedJordanAlgebra| . |FiniteRankNonAssociativeAlgebra|) 116059) ((|AssociatedJordanAlgebra| . |Eltable|) 115987) ((|JoinAst| . |SpadSyntaxCategory|) T) ((|JoinAst| . |HomotopicTo|) 115965) ((|JoinAst| . |CoercibleTo|) 115900) ((|JoinAst| . |CoercibleFrom|) 115878) ((|JoinAst| . |SetCategory|) T) ((|JoinAst| . |Type|) T) ((|JoinAst| . |Join|) T) ((|JoinAst| . |BasicType|) T) ((|JoinAst| . |AbstractSyntaxCategory|) T) ((|InfiniteTuple| . |Functorial|) 115862) ((|InfiniteTuple| . |Join|) T) ((|InfiniteTuple| . |Type|) T) ((|InfiniteTuple| . |CoercibleTo|) 115836) ((|InternalTypeForm| . |SetCategory|) T) ((|InternalTypeForm| . |CoercibleTo|) 115791) ((|InternalTypeForm| . |Type|) T) ((|InternalTypeForm| . |Join|) T) ((|InternalTypeForm| . |BasicType|) T) ((|InternalTypeForm| . |HomotopicTo|) 115769) ((|InternalTypeForm| . |CoercibleFrom|) 115747) ((|InnerTaylorSeries| . |Ring|) T) ((|InnerTaylorSeries| . |Monoid|) T) ((|InnerTaylorSeries| . |SemiRing|) T) ((|InnerTaylorSeries| . |SemiGroup|) T) ((|InnerTaylorSeries| . |Rng|) T) ((|InnerTaylorSeries| . |AbelianGroup|) T) ((|InnerTaylorSeries| . |LeftLinearSet|) 115701) ((|InnerTaylorSeries| . |AbelianMonoid|) T) ((|InnerTaylorSeries| . |SetCategory|) T) ((|InnerTaylorSeries| . |CoercibleTo|) 115675) ((|InnerTaylorSeries| . |Type|) T) ((|InnerTaylorSeries| . |Join|) T) ((|InnerTaylorSeries| . |BasicType|) T) ((|InnerTaylorSeries| . |AbelianSemiGroup|) T) ((|InnerTaylorSeries| . |CancellationAbelianMonoid|) T) ((|InnerTaylorSeries| . |LeftModule|) 115649) ((|InnerTaylorSeries| . |CoercibleFrom|) 115590) ((|InnerTaylorSeries| . |BiModule|) 115531) ((|InnerTaylorSeries| . |RightLinearSet|) 115479) ((|InnerTaylorSeries| . |RightModule|) 115427) ((|InnerTaylorSeries| . |IntegralDomain|) 115394) ((|InnerTaylorSeries| . |EntireRing|) 115361) ((|InnerTaylorSeries| . |CommutativeRing|) 115328) ((|InnerTaylorSeries| . |Module|) 115289) ((|InnerTaylorSeries| . |LinearSet|) 115250) ((|InnerTaylorSeries| . |Algebra|) 115211) ((|InnerSparseUnivariatePowerSeries| . |UnivariatePowerSeriesCategory|) 115183) ((|InnerSparseUnivariatePowerSeries| . |AbelianMonoidRing|) 115155) ((|InnerSparseUnivariatePowerSeries| . |Algebra|) 114999) ((|InnerSparseUnivariatePowerSeries| . |LinearSet|) 114843) ((|InnerSparseUnivariatePowerSeries| . |Module|) 114687) ((|InnerSparseUnivariatePowerSeries| . |CoercibleFrom|) 114511) ((|InnerSparseUnivariatePowerSeries| . |EntireRing|) 114478) ((|InnerSparseUnivariatePowerSeries| . |IntegralDomain|) 114445) ((|InnerSparseUnivariatePowerSeries| . |Functorial|) 114429) ((|InnerSparseUnivariatePowerSeries| . |BiModule|) 114248) ((|InnerSparseUnivariatePowerSeries| . |RightLinearSet|) 114081) ((|InnerSparseUnivariatePowerSeries| . |RightModule|) 113914) ((|InnerSparseUnivariatePowerSeries| . |CommutativeRing|) 113843) ((|InnerSparseUnivariatePowerSeries| . |CharacteristicZero|) 113806) ((|InnerSparseUnivariatePowerSeries| . |CharacteristicNonZero|) 113766) ((|InnerSparseUnivariatePowerSeries| . |LeftModule|) 113663) ((|InnerSparseUnivariatePowerSeries| . |LeftLinearSet|) 113540) ((|InnerSparseUnivariatePowerSeries| . |PowerSeriesCategory|) 113486) ((|InnerSparseUnivariatePowerSeries| . |PartialDifferentialSpace|) 113361) ((|InnerSparseUnivariatePowerSeries| . |PartialDifferentialDomain|) 113234) ((|InnerSparseUnivariatePowerSeries| . |PartialDifferentialRing|) 113109) ((|InnerSparseUnivariatePowerSeries| . |Eltable|) 113069) ((|InnerSparseUnivariatePowerSeries| . |DifferentialSpace|) 113017) ((|InnerSparseUnivariatePowerSeries| . |Type|) T) ((|InnerSparseUnivariatePowerSeries| . |Join|) T) ((|InnerSparseUnivariatePowerSeries| . |DifferentialDomain|) 112959) ((|InnerSparseUnivariatePowerSeries| . |Ring|) T) ((|InnerSparseUnivariatePowerSeries| . |Monoid|) T) ((|InnerSparseUnivariatePowerSeries| . |SemiRing|) T) ((|InnerSparseUnivariatePowerSeries| . |SemiGroup|) T) ((|InnerSparseUnivariatePowerSeries| . |Rng|) T) ((|InnerSparseUnivariatePowerSeries| . |AbelianGroup|) T) ((|InnerSparseUnivariatePowerSeries| . |AbelianMonoid|) T) ((|InnerSparseUnivariatePowerSeries| . |SetCategory|) T) ((|InnerSparseUnivariatePowerSeries| . |CoercibleTo|) 112933) ((|InnerSparseUnivariatePowerSeries| . |BasicType|) T) ((|InnerSparseUnivariatePowerSeries| . |AbelianSemiGroup|) T) ((|InnerSparseUnivariatePowerSeries| . |CancellationAbelianMonoid|) T) ((|InnerSparseUnivariatePowerSeries| . |DifferentialRing|) 112881) ((|IsAst| . |SpadSyntaxCategory|) T) ((|IsAst| . |HomotopicTo|) 112859) ((|IsAst| . |CoercibleTo|) 112814) ((|IsAst| . |CoercibleFrom|) 112792) ((|IsAst| . |SetCategory|) T) ((|IsAst| . |Type|) T) ((|IsAst| . |Join|) T) ((|IsAst| . |BasicType|) T) ((|IsAst| . |AbstractSyntaxCategory|) T) ((|InternalRepresentationForm| . |SetCategory|) T) ((|InternalRepresentationForm| . |CoercibleTo|) 112747) ((|InternalRepresentationForm| . |Type|) T) ((|InternalRepresentationForm| . |Join|) T) ((|InternalRepresentationForm| . |BasicType|) T) ((|InternalRepresentationForm| . |HomotopicTo|) 112725) ((|InternalRepresentationForm| . |CoercibleFrom|) 112703) ((|IntegrationResult| . |Module|) 112667) ((|IntegrationResult| . |LinearSet|) 112631) ((|IntegrationResult| . |LeftModule|) 112595) ((|IntegrationResult| . |LeftLinearSet|) 112539) ((|IntegrationResult| . |CancellationAbelianMonoid|) T) ((|IntegrationResult| . |AbelianSemiGroup|) T) ((|IntegrationResult| . |BasicType|) T) ((|IntegrationResult| . |Join|) T) ((|IntegrationResult| . |Type|) T) ((|IntegrationResult| . |CoercibleTo|) 112513) ((|IntegrationResult| . |SetCategory|) T) ((|IntegrationResult| . |AbelianMonoid|) T) ((|IntegrationResult| . |AbelianGroup|) T) ((|IntegrationResult| . |RightModule|) 112477) ((|IntegrationResult| . |RightLinearSet|) 112441) ((|IntegrationResult| . |BiModule|) 112398) ((|IntegrationResult| . |RetractableTo|) 112382) ((|IntegrationResult| . |CoercibleFrom|) 112366) ((|InnerPrimeField| . |FiniteFieldCategory|) T) ((|InnerPrimeField| . |StepThrough|) T) ((|InnerPrimeField| . |Finite|) T) ((|InnerPrimeField| . |CharacteristicNonZero|) T) ((|InnerPrimeField| . |Field|) T) ((|InnerPrimeField| . |UniqueFactorizationDomain|) T) ((|InnerPrimeField| . |PrincipalIdealDomain|) T) ((|InnerPrimeField| . |IntegralDomain|) T) ((|InnerPrimeField| . |CommutativeRing|) T) ((|InnerPrimeField| . |CoercibleFrom|) 112300) ((|InnerPrimeField| . |Module|) 112254) ((|InnerPrimeField| . |LinearSet|) 112208) ((|InnerPrimeField| . |Algebra|) 112162) ((|InnerPrimeField| . |GcdDomain|) T) ((|InnerPrimeField| . |EuclideanDomain|) T) ((|InnerPrimeField| . |BiModule|) 112107) ((|InnerPrimeField| . |RightLinearSet|) 112061) ((|InnerPrimeField| . |RightModule|) 112015) ((|InnerPrimeField| . |LeftLinearSet|) 111949) ((|InnerPrimeField| . |LeftModule|) 111903) ((|InnerPrimeField| . |EntireRing|) T) ((|InnerPrimeField| . |DivisionRing|) T) ((|InnerPrimeField| . |FieldOfPrimeCharacteristic|) T) ((|InnerPrimeField| . |DifferentialSpace|) T) ((|InnerPrimeField| . |Type|) T) ((|InnerPrimeField| . |Join|) T) ((|InnerPrimeField| . |DifferentialDomain|) 111890) ((|InnerPrimeField| . |Ring|) T) ((|InnerPrimeField| . |Monoid|) T) ((|InnerPrimeField| . |SemiRing|) T) ((|InnerPrimeField| . |SemiGroup|) T) ((|InnerPrimeField| . |Rng|) T) ((|InnerPrimeField| . |AbelianGroup|) T) ((|InnerPrimeField| . |AbelianMonoid|) T) ((|InnerPrimeField| . |SetCategory|) T) ((|InnerPrimeField| . |CoercibleTo|) 111864) ((|InnerPrimeField| . |BasicType|) T) ((|InnerPrimeField| . |AbelianSemiGroup|) T) ((|InnerPrimeField| . |CancellationAbelianMonoid|) T) ((|InnerPrimeField| . |DifferentialRing|) T) ((|InnerPrimeField| . |FiniteAlgebraicExtensionField|) 111851) ((|InnerPrimeField| . |CharacteristicZero|) 111817) ((|InnerPrimeField| . |RetractableTo|) 111804) ((|InnerPrimeField| . |VectorSpace|) 111791) ((|InnerPrimeField| . |ExtensionField|) 111778) ((|InnerPrimeField| . |ConvertibleTo|) 111755) ((|InnerPAdicInteger| . |PAdicIntegerCategory|) 111739) ((|InnerPAdicInteger| . |PrincipalIdealDomain|) T) ((|InnerPAdicInteger| . |IntegralDomain|) T) ((|InnerPAdicInteger| . |EntireRing|) T) ((|InnerPAdicInteger| . |CommutativeRing|) T) ((|InnerPAdicInteger| . |CoercibleFrom|) 111706) ((|InnerPAdicInteger| . |Module|) 111693) ((|InnerPAdicInteger| . |LinearSet|) 111680) ((|InnerPAdicInteger| . |RightModule|) 111667) ((|InnerPAdicInteger| . |RightLinearSet|) 111654) ((|InnerPAdicInteger| . |BiModule|) 111639) ((|InnerPAdicInteger| . |Algebra|) 111626) ((|InnerPAdicInteger| . |GcdDomain|) T) ((|InnerPAdicInteger| . |EuclideanDomain|) T) ((|InnerPAdicInteger| . |Ring|) T) ((|InnerPAdicInteger| . |Monoid|) T) ((|InnerPAdicInteger| . |SemiRing|) T) ((|InnerPAdicInteger| . |SemiGroup|) T) ((|InnerPAdicInteger| . |Rng|) T) ((|InnerPAdicInteger| . |AbelianGroup|) T) ((|InnerPAdicInteger| . |LeftLinearSet|) 111593) ((|InnerPAdicInteger| . |AbelianMonoid|) T) ((|InnerPAdicInteger| . |SetCategory|) T) ((|InnerPAdicInteger| . |CoercibleTo|) 111567) ((|InnerPAdicInteger| . |Type|) T) ((|InnerPAdicInteger| . |Join|) T) ((|InnerPAdicInteger| . |BasicType|) T) ((|InnerPAdicInteger| . |AbelianSemiGroup|) T) ((|InnerPAdicInteger| . |CancellationAbelianMonoid|) T) ((|InnerPAdicInteger| . |LeftModule|) 111554) ((|InnerPAdicInteger| . |CharacteristicZero|) T) ((|IP4Address| . |SetCategory|) T) ((|IP4Address| . |CoercibleTo|) 111528) ((|IP4Address| . |Type|) T) ((|IP4Address| . |Join|) T) ((|IP4Address| . |BasicType|) T) ((|IOMode| . |SetCategory|) T) ((|IOMode| . |CoercibleTo|) 111502) ((|IOMode| . |Type|) T) ((|IOMode| . |Join|) T) ((|IOMode| . |BasicType|) T) ((|InputOutputBinaryFile| . |InputOutputByteConduit|) T) ((|InputOutputBinaryFile| . |OutputByteConduit|) T) ((|InputOutputBinaryFile| . |Conduit|) T) ((|InputOutputBinaryFile| . |InputByteConduit|) T) ((|InputOutputBinaryFile| . |CoercibleTo|) 111476) ((|Interval| . |IntervalCategory|) 111460) ((|Interval| . |ArcHyperbolicFunctionCategory|) T) ((|Interval| . |ArcTrigonometricFunctionCategory|) T) ((|Interval| . |ElementaryFunctionCategory|) T) ((|Interval| . |HyperbolicFunctionCategory|) T) ((|Interval| . |TrigonometricFunctionCategory|) T) ((|Interval| . |TranscendentalFunctionCategory|) T) ((|Interval| . |RetractableTo|) 111437) ((|Interval| . |RadicalCategory|) T) ((|Interval| . |OrderedType|) T) ((|Interval| . |OrderedSet|) T) ((|Interval| . |IntegralDomain|) T) ((|Interval| . |EntireRing|) T) ((|Interval| . |CommutativeRing|) T) ((|Interval| . |CoercibleFrom|) 111404) ((|Interval| . |Module|) 111391) ((|Interval| . |LinearSet|) 111378) ((|Interval| . |LeftModule|) 111365) ((|Interval| . |LeftLinearSet|) 111332) ((|Interval| . |CancellationAbelianMonoid|) T) ((|Interval| . |AbelianSemiGroup|) T) ((|Interval| . |BasicType|) T) ((|Interval| . |Join|) T) ((|Interval| . |Type|) T) ((|Interval| . |CoercibleTo|) 111306) ((|Interval| . |SetCategory|) T) ((|Interval| . |AbelianMonoid|) T) ((|Interval| . |AbelianGroup|) T) ((|Interval| . |RightModule|) 111293) ((|Interval| . |RightLinearSet|) 111280) ((|Interval| . |BiModule|) 111265) ((|Interval| . |Ring|) T) ((|Interval| . |Monoid|) T) ((|Interval| . |SemiRing|) T) ((|Interval| . |SemiGroup|) T) ((|Interval| . |Rng|) T) ((|Interval| . |Algebra|) 111252) ((|Interval| . |GcdDomain|) T) ((|InnerTable| . |TableAggregate|) 111231) ((|InnerTable| . |Dictionary|) 111173) ((|InnerTable| . |BagAggregate|) 111115) ((|InnerTable| . |ShallowlyMutableAggregate|) 111044) ((|InnerTable| . |Collection|) 110986) ((|InnerTable| . |ConvertibleTo|) NIL) ((|InnerTable| . |DictionaryOperations|) 110928) ((|InnerTable| . |IndexedAggregate|) 110907) ((|InnerTable| . |Evalable|) 110667) ((|InnerTable| . |InnerEvalable|) 110415) ((|InnerTable| . |Functorial|) 110344) ((|InnerTable| . |HomogeneousAggregate|) 110273) ((|InnerTable| . |Eltable|) 110252) ((|InnerTable| . |EltableAggregate|) 110231) ((|InnerTable| . |KeyedDictionary|) 110210) ((|InnerTable| . |SetCategory|) T) ((|InnerTable| . |CoercibleTo|) 110184) ((|InnerTable| . |BasicType|) T) ((|InnerTable| . |Type|) T) ((|InnerTable| . |Join|) T) ((|InnerTable| . |Aggregate|) T) ((|InnerTable| . |FiniteAggregate|) 110126) ((|Int8| . |OrderedFinite|) T) ((|Int8| . |OrderedType|) T) ((|Int8| . |OrderedSet|) T) ((|Int8| . |SetCategory|) T) ((|Int8| . |CoercibleTo|) 110100) ((|Int8| . |Type|) T) ((|Int8| . |Join|) T) ((|Int8| . |BasicType|) T) ((|Int8| . |Finite|) T) ((|Int64| . |OrderedFinite|) T) ((|Int64| . |OrderedType|) T) ((|Int64| . |OrderedSet|) T) ((|Int64| . |SetCategory|) T) ((|Int64| . |CoercibleTo|) 110074) ((|Int64| . |Type|) T) ((|Int64| . |Join|) T) ((|Int64| . |BasicType|) T) ((|Int64| . |Finite|) T) ((|Int32| . |OrderedFinite|) T) ((|Int32| . |OrderedType|) T) ((|Int32| . |OrderedSet|) T) ((|Int32| . |SetCategory|) T) ((|Int32| . |CoercibleTo|) 110048) ((|Int32| . |Type|) T) ((|Int32| . |Join|) T) ((|Int32| . |BasicType|) T) ((|Int32| . |Finite|) T) ((|Int16| . |OrderedFinite|) T) ((|Int16| . |OrderedType|) T) ((|Int16| . |OrderedSet|) T) ((|Int16| . |SetCategory|) T) ((|Int16| . |CoercibleTo|) 110022) ((|Int16| . |Type|) T) ((|Int16| . |Join|) T) ((|Int16| . |BasicType|) T) ((|Int16| . |Finite|) T) ((|Integer| . |IntegerNumberSystem|) T) ((|Integer| . |UniqueFactorizationDomain|) T) ((|Integer| . |StepThrough|) T) ((|Integer| . |RetractableTo|) 109999) ((|Integer| . |ConvertibleTo|) 109885) ((|Integer| . |RealConstant|) T) ((|Integer| . |PatternMatchable|) 109862) ((|Integer| . |OrderedRing|) T) ((|Integer| . |OrderedCancellationAbelianMonoid|) T) ((|Integer| . |OrderedAbelianSemiGroup|) T) ((|Integer| . |OrderedType|) T) ((|Integer| . |OrderedSet|) T) ((|Integer| . |OrderedAbelianMonoid|) T) ((|Integer| . |OrderedAbelianGroup|) T) ((|Integer| . |OrderedIntegralDomain|) T) ((|Integer| . |LeftModule|) 109829) ((|Integer| . |LinearlyExplicitRingOver|) 109806) ((|Integer| . |PrincipalIdealDomain|) T) ((|Integer| . |IntegralDomain|) T) ((|Integer| . |EntireRing|) T) ((|Integer| . |CommutativeRing|) T) ((|Integer| . |CoercibleFrom|) 109773) ((|Integer| . |Module|) 109760) ((|Integer| . |LinearSet|) 109747) ((|Integer| . |RightModule|) 109734) ((|Integer| . |RightLinearSet|) 109721) ((|Integer| . |BiModule|) 109706) ((|Integer| . |Algebra|) 109693) ((|Integer| . |GcdDomain|) T) ((|Integer| . |EuclideanDomain|) T) ((|Integer| . |DifferentialSpace|) T) ((|Integer| . |DifferentialDomain|) 109680) ((|Integer| . |DifferentialRing|) T) ((|Integer| . |CombinatorialFunctionCategory|) T) ((|Integer| . |Ring|) T) ((|Integer| . |Monoid|) T) ((|Integer| . |SemiRing|) T) ((|Integer| . |SemiGroup|) T) ((|Integer| . |Rng|) T) ((|Integer| . |AbelianGroup|) T) ((|Integer| . |LeftLinearSet|) 109647) ((|Integer| . |AbelianMonoid|) T) ((|Integer| . |SetCategory|) T) ((|Integer| . |CoercibleTo|) 109621) ((|Integer| . |Type|) T) ((|Integer| . |Join|) T) ((|Integer| . |BasicType|) T) ((|Integer| . |AbelianSemiGroup|) T) ((|Integer| . |CancellationAbelianMonoid|) T) ((|Integer| . |CharacteristicZero|) T) ((|InputForm| . |SExpressionCategory|) 109545) ((|InputForm| . |BasicType|) T) ((|InputForm| . |CoercibleTo|) 109519) ((|InputForm| . |SetCategory|) T) ((|InputForm| . |Eltable|) 109463) ((|InputForm| . |Type|) T) ((|InputForm| . |Join|) T) ((|InputForm| . |ConvertibleFrom|) 109336) ((|InputForm| . |ConvertibleTo|) 109309) ((|InetClientStreamSocket| . |NetworkClientSocket|) 109283) ((|InetClientStreamSocket| . |InputByteConduit|) T) ((|InetClientStreamSocket| . |Conduit|) T) ((|InetClientStreamSocket| . |OutputByteConduit|) T) ((|InetClientStreamSocket| . |InputOutputByteConduit|) T) ((|InetClientStreamSocket| . |CoercibleTo|) 109257) ((|IndexedExponents| . |OrderedAbelianMonoidSup|) T) ((|IndexedExponents| . |CancellationAbelianMonoid|) T) ((|IndexedExponents| . |AbelianSemiGroup|) T) ((|IndexedExponents| . |BasicType|) T) ((|IndexedExponents| . |Join|) T) ((|IndexedExponents| . |Type|) T) ((|IndexedExponents| . |CoercibleTo|) 109231) ((|IndexedExponents| . |SetCategory|) T) ((|IndexedExponents| . |AbelianMonoid|) T) ((|IndexedExponents| . |OrderedAbelianMonoid|) T) ((|IndexedExponents| . |OrderedSet|) T) ((|IndexedExponents| . |OrderedType|) T) ((|IndexedExponents| . |OrderedAbelianSemiGroup|) T) ((|IndexedExponents| . |OrderedCancellationAbelianMonoid|) T) ((|IndexedExponents| . |IndexedDirectProductCategory|) 109192) ((|IndexedExponents| . |Functorial|) 109158) ((|IndexedExponents| . |ConvertibleFrom|) 109087) ((|InputBinaryFile| . |InputByteConduit|) T) ((|InputBinaryFile| . |Conduit|) T) ((|InputBinaryFile| . |CoercibleTo|) 109061) ((|InAst| . |SpadSyntaxCategory|) T) ((|InAst| . |HomotopicTo|) 109039) ((|InAst| . |CoercibleTo|) 108994) ((|InAst| . |CoercibleFrom|) 108972) ((|InAst| . |SetCategory|) T) ((|InAst| . |Type|) T) ((|InAst| . |Join|) T) ((|InAst| . |BasicType|) T) ((|InAst| . |AbstractSyntaxCategory|) T) ((|ImportAst| . |SpadSyntaxCategory|) T) ((|ImportAst| . |HomotopicTo|) 108950) ((|ImportAst| . |CoercibleTo|) 108905) ((|ImportAst| . |CoercibleFrom|) 108883) ((|ImportAst| . |SetCategory|) T) ((|ImportAst| . |Type|) T) ((|ImportAst| . |Join|) T) ((|ImportAst| . |BasicType|) T) ((|ImportAst| . |AbstractSyntaxCategory|) T) ((|InnerFiniteField| . |FiniteAlgebraicExtensionField|) 108847) ((|InnerFiniteField| . |DifferentialRing|) T) ((|InnerFiniteField| . |DifferentialDomain|) 108834) ((|InnerFiniteField| . |DifferentialSpace|) T) ((|InnerFiniteField| . |Finite|) T) ((|InnerFiniteField| . |StepThrough|) T) ((|InnerFiniteField| . |FiniteFieldCategory|) T) ((|InnerFiniteField| . |CharacteristicZero|) 108800) ((|InnerFiniteField| . |CoercibleFrom|) 108701) ((|InnerFiniteField| . |LeftModule|) 108622) ((|InnerFiniteField| . |LeftLinearSet|) 108523) ((|InnerFiniteField| . |CancellationAbelianMonoid|) T) ((|InnerFiniteField| . |AbelianSemiGroup|) T) ((|InnerFiniteField| . |BasicType|) T) ((|InnerFiniteField| . |Join|) T) ((|InnerFiniteField| . |Type|) T) ((|InnerFiniteField| . |CoercibleTo|) 108497) ((|InnerFiniteField| . |SetCategory|) T) ((|InnerFiniteField| . |AbelianMonoid|) T) ((|InnerFiniteField| . |AbelianGroup|) T) ((|InnerFiniteField| . |Rng|) T) ((|InnerFiniteField| . |SemiGroup|) T) ((|InnerFiniteField| . |SemiRing|) T) ((|InnerFiniteField| . |Monoid|) T) ((|InnerFiniteField| . |Ring|) T) ((|InnerFiniteField| . |Field|) T) ((|InnerFiniteField| . |UniqueFactorizationDomain|) T) ((|InnerFiniteField| . |PrincipalIdealDomain|) T) ((|InnerFiniteField| . |IntegralDomain|) T) ((|InnerFiniteField| . |CommutativeRing|) T) ((|InnerFiniteField| . |Module|) 108418) ((|InnerFiniteField| . |LinearSet|) 108339) ((|InnerFiniteField| . |Algebra|) 108293) ((|InnerFiniteField| . |GcdDomain|) T) ((|InnerFiniteField| . |EuclideanDomain|) T) ((|InnerFiniteField| . |BiModule|) 108198) ((|InnerFiniteField| . |RightLinearSet|) 108119) ((|InnerFiniteField| . |RightModule|) 108040) ((|InnerFiniteField| . |EntireRing|) T) ((|InnerFiniteField| . |DivisionRing|) T) ((|InnerFiniteField| . |FieldOfPrimeCharacteristic|) T) ((|InnerFiniteField| . |CharacteristicNonZero|) T) ((|InnerFiniteField| . |RetractableTo|) 108004) ((|InnerFiniteField| . |VectorSpace|) 107968) ((|InnerFiniteField| . |ExtensionField|) 107932) ((|IfAst| . |SpadSyntaxCategory|) T) ((|IfAst| . |HomotopicTo|) 107910) ((|IfAst| . |CoercibleTo|) 107865) ((|IfAst| . |CoercibleFrom|) 107843) ((|IfAst| . |SetCategory|) T) ((|IfAst| . |Type|) T) ((|IfAst| . |Join|) T) ((|IfAst| . |BasicType|) T) ((|IfAst| . |AbstractSyntaxCategory|) T) ((|IndexedFlexibleArray| . |OneDimensionalArrayAggregate|) 107827) ((|IndexedFlexibleArray| . |ShallowlyMutableAggregate|) 107811) ((|IndexedFlexibleArray| . |FiniteAggregate|) 107795) ((|IndexedFlexibleArray| . |Aggregate|) T) ((|IndexedFlexibleArray| . |Join|) T) ((|IndexedFlexibleArray| . |Type|) T) ((|IndexedFlexibleArray| . |BasicType|) 107705) ((|IndexedFlexibleArray| . |CoercibleTo|) 107579) ((|IndexedFlexibleArray| . |Evalable|) 107503) ((|IndexedFlexibleArray| . |InnerEvalable|) 107422) ((|IndexedFlexibleArray| . |Functorial|) 107406) ((|IndexedFlexibleArray| . |SetCategory|) 107343) ((|IndexedFlexibleArray| . |HomogeneousAggregate|) 107327) ((|IndexedFlexibleArray| . |LinearAggregate|) 107311) ((|IndexedFlexibleArray| . |EltableAggregate|) 107283) ((|IndexedFlexibleArray| . |Eltable|) 107212) ((|IndexedFlexibleArray| . |IndexedAggregate|) 107184) ((|IndexedFlexibleArray| . |ConvertibleTo|) 107120) ((|IndexedFlexibleArray| . |Collection|) 107104) ((|IndexedFlexibleArray| . |OrderedSet|) 107075) ((|IndexedFlexibleArray| . |OrderedType|) 107046) ((|IndexedFlexibleArray| . |FiniteLinearAggregate|) 107030) ((|IndexedFlexibleArray| . |ExtensibleLinearAggregate|) 107014) ((|InnerFreeAbelianMonoid| . |FreeAbelianMonoidCategory|) 106993) ((|InnerFreeAbelianMonoid| . |CoercibleFrom|) 106977) ((|InnerFreeAbelianMonoid| . |RetractableTo|) 106961) ((|InnerFreeAbelianMonoid| . |AbelianMonoid|) T) ((|InnerFreeAbelianMonoid| . |SetCategory|) T) ((|InnerFreeAbelianMonoid| . |CoercibleTo|) 106935) ((|InnerFreeAbelianMonoid| . |Type|) T) ((|InnerFreeAbelianMonoid| . |Join|) T) ((|InnerFreeAbelianMonoid| . |BasicType|) T) ((|InnerFreeAbelianMonoid| . |AbelianSemiGroup|) T) ((|InnerFreeAbelianMonoid| . |CancellationAbelianMonoid|) T) ((|IndexedProductTerm| . |BasicType|) T) ((|IndexedProductTerm| . |Join|) T) ((|IndexedProductTerm| . |Type|) T) ((|IndexedProductTerm| . |CoercibleTo|) 106905) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedAbelianMonoidSup|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |CancellationAbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |AbelianSemiGroup|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |BasicType|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |Join|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |Type|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |CoercibleTo|) 106879) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |SetCategory|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |AbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedAbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedSet|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedType|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedAbelianSemiGroup|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |OrderedCancellationAbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |IndexedDirectProductCategory|) 106858) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |Functorial|) 106842) ((|IndexedDirectProductOrderedAbelianMonoidSup| . |ConvertibleFrom|) 106789) ((|IndexedDirectProductOrderedAbelianMonoid| . |OrderedAbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |OrderedSet|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |OrderedType|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |OrderedAbelianSemiGroup|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |AbelianSemiGroup|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |BasicType|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |Join|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |Type|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |CoercibleTo|) 106763) ((|IndexedDirectProductOrderedAbelianMonoid| . |SetCategory|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |AbelianMonoid|) T) ((|IndexedDirectProductOrderedAbelianMonoid| . |IndexedDirectProductCategory|) 106742) ((|IndexedDirectProductOrderedAbelianMonoid| . |Functorial|) 106726) ((|IndexedDirectProductOrderedAbelianMonoid| . |ConvertibleFrom|) 106673) ((|IndexedDirectProductObject| . |IndexedDirectProductCategory|) 106652) ((|IndexedDirectProductObject| . |CoercibleTo|) 106568) ((|IndexedDirectProductObject| . |SetCategory|) 106503) ((|IndexedDirectProductObject| . |Functorial|) 106487) ((|IndexedDirectProductObject| . |ConvertibleFrom|) 106434) ((|IndexedDirectProductObject| . |Type|) T) ((|IndexedDirectProductObject| . |Join|) T) ((|IndexedDirectProductObject| . |BasicType|) T) ((|IndexedDirectProductAbelianMonoid| . |AbelianMonoid|) T) ((|IndexedDirectProductAbelianMonoid| . |SetCategory|) T) ((|IndexedDirectProductAbelianMonoid| . |CoercibleTo|) 106408) ((|IndexedDirectProductAbelianMonoid| . |Type|) T) ((|IndexedDirectProductAbelianMonoid| . |Join|) T) ((|IndexedDirectProductAbelianMonoid| . |BasicType|) T) ((|IndexedDirectProductAbelianMonoid| . |AbelianSemiGroup|) T) ((|IndexedDirectProductAbelianMonoid| . |IndexedDirectProductCategory|) 106387) ((|IndexedDirectProductAbelianMonoid| . |Functorial|) 106371) ((|IndexedDirectProductAbelianMonoid| . |ConvertibleFrom|) 106318) ((|IndexedDirectProductAbelianGroup| . |AbelianGroup|) T) ((|IndexedDirectProductAbelianGroup| . |LeftLinearSet|) 106295) ((|IndexedDirectProductAbelianGroup| . |AbelianMonoid|) T) ((|IndexedDirectProductAbelianGroup| . |SetCategory|) T) ((|IndexedDirectProductAbelianGroup| . |CoercibleTo|) 106269) ((|IndexedDirectProductAbelianGroup| . |Type|) T) ((|IndexedDirectProductAbelianGroup| . |Join|) T) ((|IndexedDirectProductAbelianGroup| . |BasicType|) T) ((|IndexedDirectProductAbelianGroup| . |AbelianSemiGroup|) T) ((|IndexedDirectProductAbelianGroup| . |CancellationAbelianMonoid|) T) ((|IndexedDirectProductAbelianGroup| . |IndexedDirectProductCategory|) 106248) ((|IndexedDirectProductAbelianGroup| . |Functorial|) 106232) ((|IndexedDirectProductAbelianGroup| . |ConvertibleFrom|) 106179) ((|Identifier| . |SetCategory|) T) ((|Identifier| . |CoercibleTo|) 106153) ((|Identifier| . |Type|) T) ((|Identifier| . |Join|) T) ((|Identifier| . |BasicType|) T) ((|PolynomialIdeals| . |SetCategory|) T) ((|PolynomialIdeals| . |CoercibleTo|) 106127) ((|PolynomialIdeals| . |Type|) T) ((|PolynomialIdeals| . |Join|) T) ((|PolynomialIdeals| . |BasicType|) T) ((|IndexCard| . |OrderedSet|) T) ((|IndexCard| . |CoercibleTo|) 106101) ((|IndexCard| . |SetCategory|) T) ((|IndexCard| . |BasicType|) T) ((|IndexCard| . |Join|) T) ((|IndexCard| . |Type|) T) ((|IndexCard| . |OrderedType|) T) ((|IndexCard| . |CoercibleFrom|) 106079) ((|IndexedBits| . |BitAggregate|) T) ((|IndexedBits| . |FiniteLinearAggregate|) 106056) ((|IndexedBits| . |OrderedType|) T) ((|IndexedBits| . |OrderedSet|) T) ((|IndexedBits| . |Collection|) 106033) ((|IndexedBits| . |ConvertibleTo|) 106008) ((|IndexedBits| . |Eltable|) 105930) ((|IndexedBits| . |IndexedAggregate|) 105895) ((|IndexedBits| . |EltableAggregate|) 105860) ((|IndexedBits| . |LinearAggregate|) 105837) ((|IndexedBits| . |HomogeneousAggregate|) 105814) ((|IndexedBits| . |SetCategory|) T) ((|IndexedBits| . |Functorial|) 105791) ((|IndexedBits| . |InnerEvalable|) NIL) ((|IndexedBits| . |Evalable|) NIL) ((|IndexedBits| . |CoercibleTo|) 105765) ((|IndexedBits| . |BasicType|) T) ((|IndexedBits| . |Aggregate|) T) ((|IndexedBits| . |FiniteAggregate|) 105742) ((|IndexedBits| . |ShallowlyMutableAggregate|) 105719) ((|IndexedBits| . |OneDimensionalArrayAggregate|) 105696) ((|IndexedBits| . |Logic|) T) ((|IndexedBits| . |Join|) T) ((|IndexedBits| . |Type|) T) ((|IndexedBits| . |BooleanLogic|) T) ((|InnerTwoDimensionalArray| . |TwoDimensionalArrayCategory|) 105670) ((|InnerTwoDimensionalArray| . |ShallowlyMutableAggregate|) 105654) ((|InnerTwoDimensionalArray| . |HomogeneousAggregate|) 105638) ((|InnerTwoDimensionalArray| . |SetCategory|) 105608) ((|InnerTwoDimensionalArray| . |Functorial|) 105592) ((|InnerTwoDimensionalArray| . |InnerEvalable|) 105511) ((|InnerTwoDimensionalArray| . |Evalable|) 105435) ((|InnerTwoDimensionalArray| . |CoercibleTo|) 105337) ((|InnerTwoDimensionalArray| . |BasicType|) 105275) ((|InnerTwoDimensionalArray| . |Type|) T) ((|InnerTwoDimensionalArray| . |Join|) T) ((|InnerTwoDimensionalArray| . |Aggregate|) T) ((|InnerTwoDimensionalArray| . |FiniteAggregate|) 105259) ((|IndexedOneDimensionalArray| . |OneDimensionalArrayAggregate|) 105243) ((|IndexedOneDimensionalArray| . |ShallowlyMutableAggregate|) 105227) ((|IndexedOneDimensionalArray| . |FiniteAggregate|) 105211) ((|IndexedOneDimensionalArray| . |Aggregate|) T) ((|IndexedOneDimensionalArray| . |Join|) T) ((|IndexedOneDimensionalArray| . |Type|) T) ((|IndexedOneDimensionalArray| . |BasicType|) 105121) ((|IndexedOneDimensionalArray| . |CoercibleTo|) 104995) ((|IndexedOneDimensionalArray| . |Evalable|) 104919) ((|IndexedOneDimensionalArray| . |InnerEvalable|) 104838) ((|IndexedOneDimensionalArray| . |Functorial|) 104822) ((|IndexedOneDimensionalArray| . |SetCategory|) 104759) ((|IndexedOneDimensionalArray| . |HomogeneousAggregate|) 104743) ((|IndexedOneDimensionalArray| . |LinearAggregate|) 104727) ((|IndexedOneDimensionalArray| . |EltableAggregate|) 104699) ((|IndexedOneDimensionalArray| . |Eltable|) 104628) ((|IndexedOneDimensionalArray| . |IndexedAggregate|) 104600) ((|IndexedOneDimensionalArray| . |ConvertibleTo|) 104536) ((|IndexedOneDimensionalArray| . |Collection|) 104520) ((|IndexedOneDimensionalArray| . |OrderedSet|) 104491) ((|IndexedOneDimensionalArray| . |OrderedType|) 104462) ((|IndexedOneDimensionalArray| . |FiniteLinearAggregate|) 104446) ((|InnerAlgebraicNumber| . |ExpressionSpace|) T) ((|InnerAlgebraicNumber| . |BasicType|) T) ((|InnerAlgebraicNumber| . |Join|) T) ((|InnerAlgebraicNumber| . |Type|) T) ((|InnerAlgebraicNumber| . |CoercibleTo|) 104420) ((|InnerAlgebraicNumber| . |SetCategory|) T) ((|InnerAlgebraicNumber| . |CoercibleFrom|) 104267) ((|InnerAlgebraicNumber| . |RetractableTo|) 104195) ((|InnerAlgebraicNumber| . |InnerEvalable|) 104157) ((|InnerAlgebraicNumber| . |Evalable|) 104144) ((|InnerAlgebraicNumber| . |AlgebraicallyClosedField|) T) ((|InnerAlgebraicNumber| . |RadicalCategory|) T) ((|InnerAlgebraicNumber| . |DivisionRing|) T) ((|InnerAlgebraicNumber| . |BiModule|) 104089) ((|InnerAlgebraicNumber| . |RightLinearSet|) 104043) ((|InnerAlgebraicNumber| . |RightModule|) 103997) ((|InnerAlgebraicNumber| . |EntireRing|) T) ((|InnerAlgebraicNumber| . |Module|) 103951) ((|InnerAlgebraicNumber| . |LinearSet|) 103905) ((|InnerAlgebraicNumber| . |LeftModule|) 103839) ((|InnerAlgebraicNumber| . |LeftLinearSet|) 103773) ((|InnerAlgebraicNumber| . |CancellationAbelianMonoid|) T) ((|InnerAlgebraicNumber| . |AbelianSemiGroup|) T) ((|InnerAlgebraicNumber| . |AbelianMonoid|) T) ((|InnerAlgebraicNumber| . |AbelianGroup|) T) ((|InnerAlgebraicNumber| . |Ring|) T) ((|InnerAlgebraicNumber| . |Monoid|) T) ((|InnerAlgebraicNumber| . |SemiRing|) T) ((|InnerAlgebraicNumber| . |SemiGroup|) T) ((|InnerAlgebraicNumber| . |Rng|) T) ((|InnerAlgebraicNumber| . |Algebra|) 103727) ((|InnerAlgebraicNumber| . |EuclideanDomain|) T) ((|InnerAlgebraicNumber| . |GcdDomain|) T) ((|InnerAlgebraicNumber| . |CommutativeRing|) T) ((|InnerAlgebraicNumber| . |IntegralDomain|) T) ((|InnerAlgebraicNumber| . |PrincipalIdealDomain|) T) ((|InnerAlgebraicNumber| . |UniqueFactorizationDomain|) T) ((|InnerAlgebraicNumber| . |Field|) T) ((|InnerAlgebraicNumber| . |LinearlyExplicitRingOver|) 103676) ((|InnerAlgebraicNumber| . |RealConstant|) T) ((|InnerAlgebraicNumber| . |ConvertibleTo|) 103601) ((|InnerAlgebraicNumber| . |CharacteristicZero|) T) ((|InnerAlgebraicNumber| . |DifferentialRing|) T) ((|InnerAlgebraicNumber| . |DifferentialDomain|) 103588) ((|InnerAlgebraicNumber| . |DifferentialSpace|) T) ((|Hostname| . |SetCategory|) T) ((|Hostname| . |CoercibleTo|) 103543) ((|Hostname| . |Type|) T) ((|Hostname| . |Join|) T) ((|Hostname| . |BasicType|) T) ((|HexadecimalExpansion| . |QuotientFieldCategory|) 103520) ((|HexadecimalExpansion| . |StepThrough|) T) ((|HexadecimalExpansion| . |CoercibleFrom|) 103454) ((|HexadecimalExpansion| . |RetractableTo|) 103398) ((|HexadecimalExpansion| . |ConvertibleTo|) 103299) ((|HexadecimalExpansion| . |RealConstant|) T) ((|HexadecimalExpansion| . |PolynomialFactorizationExplicit|) NIL) ((|HexadecimalExpansion| . |Patternable|) 103276) ((|HexadecimalExpansion| . |OrderedRing|) T) ((|HexadecimalExpansion| . |OrderedCancellationAbelianMonoid|) T) ((|HexadecimalExpansion| . |OrderedAbelianSemiGroup|) T) ((|HexadecimalExpansion| . |OrderedType|) T) ((|HexadecimalExpansion| . |OrderedSet|) T) ((|HexadecimalExpansion| . |OrderedAbelianMonoid|) T) ((|HexadecimalExpansion| . |OrderedAbelianGroup|) T) ((|HexadecimalExpansion| . |OrderedIntegralDomain|) T) ((|HexadecimalExpansion| . |PatternMatchable|) 103253) ((|HexadecimalExpansion| . |FullyPatternMatchable|) 103230) ((|HexadecimalExpansion| . |LinearlyExplicitRingOver|) 103207) ((|HexadecimalExpansion| . |FullyLinearlyExplicitRingOver|) 103184) ((|HexadecimalExpansion| . |Eltable|) NIL) ((|HexadecimalExpansion| . |Evalable|) NIL) ((|HexadecimalExpansion| . |InnerEvalable|) NIL) ((|HexadecimalExpansion| . |Functorial|) 103161) ((|HexadecimalExpansion| . |FullyEvalableOver|) 103138) ((|HexadecimalExpansion| . |DivisionRing|) T) ((|HexadecimalExpansion| . |BiModule|) 103056) ((|HexadecimalExpansion| . |RightLinearSet|) 102990) ((|HexadecimalExpansion| . |RightModule|) 102924) ((|HexadecimalExpansion| . |EntireRing|) T) ((|HexadecimalExpansion| . |Module|) 102858) ((|HexadecimalExpansion| . |LinearSet|) 102792) ((|HexadecimalExpansion| . |LeftModule|) 102726) ((|HexadecimalExpansion| . |LeftLinearSet|) 102660) ((|HexadecimalExpansion| . |Algebra|) 102594) ((|HexadecimalExpansion| . |EuclideanDomain|) T) ((|HexadecimalExpansion| . |GcdDomain|) T) ((|HexadecimalExpansion| . |CommutativeRing|) T) ((|HexadecimalExpansion| . |IntegralDomain|) T) ((|HexadecimalExpansion| . |PrincipalIdealDomain|) T) ((|HexadecimalExpansion| . |UniqueFactorizationDomain|) T) ((|HexadecimalExpansion| . |Field|) T) ((|HexadecimalExpansion| . |DifferentialRing|) T) ((|HexadecimalExpansion| . |DifferentialDomain|) 102581) ((|HexadecimalExpansion| . |DifferentialSpace|) T) ((|HexadecimalExpansion| . |DifferentialSpaceExtension|) 102558) ((|HexadecimalExpansion| . |PartialDifferentialDomain|) NIL) ((|HexadecimalExpansion| . |PartialDifferentialSpace|) NIL) ((|HexadecimalExpansion| . |PartialDifferentialRing|) NIL) ((|HexadecimalExpansion| . |DifferentialExtension|) 102535) ((|HexadecimalExpansion| . |CharacteristicZero|) T) ((|HexadecimalExpansion| . |CharacteristicNonZero|) NIL) ((|HexadecimalExpansion| . |CancellationAbelianMonoid|) T) ((|HexadecimalExpansion| . |AbelianSemiGroup|) T) ((|HexadecimalExpansion| . |BasicType|) T) ((|HexadecimalExpansion| . |Join|) T) ((|HexadecimalExpansion| . |Type|) T) ((|HexadecimalExpansion| . |CoercibleTo|) 102446) ((|HexadecimalExpansion| . |SetCategory|) T) ((|HexadecimalExpansion| . |AbelianMonoid|) T) ((|HexadecimalExpansion| . |AbelianGroup|) T) ((|HexadecimalExpansion| . |Ring|) T) ((|HexadecimalExpansion| . |Monoid|) T) ((|HexadecimalExpansion| . |SemiRing|) T) ((|HexadecimalExpansion| . |SemiGroup|) T) ((|HexadecimalExpansion| . |Rng|) T) ((|HyperellipticFiniteDivisor| . |FiniteDivisorCategory|) 102415) ((|HyperellipticFiniteDivisor| . |CancellationAbelianMonoid|) T) ((|HyperellipticFiniteDivisor| . |AbelianSemiGroup|) T) ((|HyperellipticFiniteDivisor| . |BasicType|) T) ((|HyperellipticFiniteDivisor| . |Join|) T) ((|HyperellipticFiniteDivisor| . |Type|) T) ((|HyperellipticFiniteDivisor| . |CoercibleTo|) 102389) ((|HyperellipticFiniteDivisor| . |SetCategory|) T) ((|HyperellipticFiniteDivisor| . |AbelianMonoid|) T) ((|HyperellipticFiniteDivisor| . |LeftLinearSet|) 102366) ((|HyperellipticFiniteDivisor| . |AbelianGroup|) T) ((|Heap| . |PriorityQueueAggregate|) 102350) ((|Heap| . |FiniteAggregate|) 102334) ((|Heap| . |HomogeneousAggregate|) 102318) ((|Heap| . |SetCategory|) 102288) ((|Heap| . |Functorial|) 102272) ((|Heap| . |InnerEvalable|) 102191) ((|Heap| . |Evalable|) 102115) ((|Heap| . |CoercibleTo|) 102017) ((|Heap| . |BasicType|) 101955) ((|Heap| . |Type|) T) ((|Heap| . |Join|) T) ((|Heap| . |Aggregate|) T) ((|Heap| . |ShallowlyMutableAggregate|) 101939) ((|Heap| . |BagAggregate|) 101923) ((|HeadAst| . |SpadSyntaxCategory|) T) ((|HeadAst| . |HomotopicTo|) 101901) ((|HeadAst| . |CoercibleTo|) 101856) ((|HeadAst| . |CoercibleFrom|) 101834) ((|HeadAst| . |SetCategory|) T) ((|HeadAst| . |Type|) T) ((|HeadAst| . |Join|) T) ((|HeadAst| . |BasicType|) T) ((|HeadAst| . |AbstractSyntaxCategory|) T) ((|HomogeneousDirectProduct| . |DirectProductCategory|) 101813) ((|HomogeneousDirectProduct| . |VectorSpace|) 101780) ((|HomogeneousDirectProduct| . |OrderedCancellationAbelianMonoid|) 101738) ((|HomogeneousDirectProduct| . |OrderedAbelianSemiGroup|) 101696) ((|HomogeneousDirectProduct| . |OrderedType|) 101621) ((|HomogeneousDirectProduct| . |OrderedSet|) 101546) ((|HomogeneousDirectProduct| . |OrderedAbelianMonoid|) 101504) ((|HomogeneousDirectProduct| . |OrderedAbelianMonoidSup|) 101462) ((|HomogeneousDirectProduct| . |Module|) 101391) ((|HomogeneousDirectProduct| . |LinearSet|) 101296) ((|HomogeneousDirectProduct| . |EltableAggregate|) 101268) ((|HomogeneousDirectProduct| . |Eltable|) 101240) ((|HomogeneousDirectProduct| . |IndexedAggregate|) 101212) ((|HomogeneousDirectProduct| . |RetractableTo|) 100963) ((|HomogeneousDirectProduct| . |CoercibleFrom|) 100687) ((|HomogeneousDirectProduct| . |FullyRetractableTo|) 100648) ((|HomogeneousDirectProduct| . |LinearlyExplicitRingOver|) 100520) ((|HomogeneousDirectProduct| . |LeftModule|) 100305) ((|HomogeneousDirectProduct| . |FullyLinearlyExplicitRingOver|) 100273) ((|HomogeneousDirectProduct| . |HomogeneousAggregate|) 100257) ((|HomogeneousDirectProduct| . |Functorial|) 100241) ((|HomogeneousDirectProduct| . |InnerEvalable|) 100160) ((|HomogeneousDirectProduct| . |Evalable|) 100084) ((|HomogeneousDirectProduct| . |Aggregate|) T) ((|HomogeneousDirectProduct| . |FiniteAggregate|) 100068) ((|HomogeneousDirectProduct| . |Finite|) 100043) ((|HomogeneousDirectProduct| . |DifferentialRing|) 99980) ((|HomogeneousDirectProduct| . |LeftLinearSet|) 99710) ((|HomogeneousDirectProduct| . |Rng|) 99687) ((|HomogeneousDirectProduct| . |SemiGroup|) 99664) ((|HomogeneousDirectProduct| . |SemiRing|) 99641) ((|HomogeneousDirectProduct| . |Monoid|) 99618) ((|HomogeneousDirectProduct| . |Ring|) 99595) ((|HomogeneousDirectProduct| . |DifferentialDomain|) 99458) ((|HomogeneousDirectProduct| . |DifferentialSpace|) 99327) ((|HomogeneousDirectProduct| . |DifferentialSpaceExtension|) 99295) ((|HomogeneousDirectProduct| . |PartialDifferentialDomain|) 99111) ((|HomogeneousDirectProduct| . |PartialDifferentialSpace|) 98929) ((|HomogeneousDirectProduct| . |PartialDifferentialRing|) 98833) ((|HomogeneousDirectProduct| . |DifferentialExtension|) 98801) ((|HomogeneousDirectProduct| . |CoercibleTo|) 98346) ((|HomogeneousDirectProduct| . |RightModule|) 98253) ((|HomogeneousDirectProduct| . |RightLinearSet|) 98136) ((|HomogeneousDirectProduct| . |BiModule|) 98038) ((|HomogeneousDirectProduct| . |CancellationAbelianMonoid|) 97840) ((|HomogeneousDirectProduct| . |AbelianSemiGroup|) 97577) ((|HomogeneousDirectProduct| . |BasicType|) 97182) ((|HomogeneousDirectProduct| . |Join|) T) ((|HomogeneousDirectProduct| . |Type|) T) ((|HomogeneousDirectProduct| . |SetCategory|) 96814) ((|HomogeneousDirectProduct| . |AbelianMonoid|) 96585) ((|HomogeneousDirectProduct| . |AbelianGroup|) 96471) ((|HomogeneousDistributedMultivariatePolynomial| . |PolynomialCategory|) 96363) ((|HomogeneousDistributedMultivariatePolynomial| . |CoercibleFrom|) 96035) ((|HomogeneousDistributedMultivariatePolynomial| . |RetractableTo|) 95842) ((|HomogeneousDistributedMultivariatePolynomial| . |UniqueFactorizationDomain|) 95792) ((|HomogeneousDistributedMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 95742) ((|HomogeneousDistributedMultivariatePolynomial| . |PatternMatchable|) NIL) ((|HomogeneousDistributedMultivariatePolynomial| . |PartialDifferentialSpace|) 95702) ((|HomogeneousDistributedMultivariatePolynomial| . |PartialDifferentialDomain|) 95660) ((|HomogeneousDistributedMultivariatePolynomial| . |PartialDifferentialRing|) 95620) ((|HomogeneousDistributedMultivariatePolynomial| . |InnerEvalable|) 95546) ((|HomogeneousDistributedMultivariatePolynomial| . |GcdDomain|) 95464) ((|HomogeneousDistributedMultivariatePolynomial| . |LinearlyExplicitRingOver|) 95380) ((|HomogeneousDistributedMultivariatePolynomial| . |LeftModule|) 95209) ((|HomogeneousDistributedMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 95193) ((|HomogeneousDistributedMultivariatePolynomial| . |AbelianMonoidRing|) 95114) ((|HomogeneousDistributedMultivariatePolynomial| . |Algebra|) 94877) ((|HomogeneousDistributedMultivariatePolynomial| . |LinearSet|) 94640) ((|HomogeneousDistributedMultivariatePolynomial| . |Module|) 94403) ((|HomogeneousDistributedMultivariatePolynomial| . |EntireRing|) 94289) ((|HomogeneousDistributedMultivariatePolynomial| . |IntegralDomain|) 94175) ((|HomogeneousDistributedMultivariatePolynomial| . |Functorial|) 94159) ((|HomogeneousDistributedMultivariatePolynomial| . |BiModule|) 93902) ((|HomogeneousDistributedMultivariatePolynomial| . |RightLinearSet|) 93659) ((|HomogeneousDistributedMultivariatePolynomial| . |RightModule|) 93416) ((|HomogeneousDistributedMultivariatePolynomial| . |CommutativeRing|) 93269) ((|HomogeneousDistributedMultivariatePolynomial| . |CharacteristicZero|) 93232) ((|HomogeneousDistributedMultivariatePolynomial| . |CharacteristicNonZero|) 93192) ((|HomogeneousDistributedMultivariatePolynomial| . |LeftLinearSet|) 93069) ((|HomogeneousDistributedMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |BasicType|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |Join|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |Type|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |CoercibleTo|) 93043) ((|HomogeneousDistributedMultivariatePolynomial| . |SetCategory|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |AbelianMonoid|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |AbelianGroup|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |Ring|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |Monoid|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |SemiRing|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |SemiGroup|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |Rng|) T) ((|HomogeneousDistributedMultivariatePolynomial| . |FullyRetractableTo|) 93027) ((|HomogeneousDistributedMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 92948) ((|HomogeneousDistributedMultivariatePolynomial| . |Evalable|) 92935) ((|HomogeneousDistributedMultivariatePolynomial| . |ConvertibleTo|) 92713) ((|HashTable| . |TableAggregate|) 92692) ((|HashTable| . |Dictionary|) 92634) ((|HashTable| . |BagAggregate|) 92576) ((|HashTable| . |ShallowlyMutableAggregate|) 92505) ((|HashTable| . |Collection|) 92447) ((|HashTable| . |ConvertibleTo|) NIL) ((|HashTable| . |DictionaryOperations|) 92389) ((|HashTable| . |IndexedAggregate|) 92368) ((|HashTable| . |Evalable|) 92128) ((|HashTable| . |InnerEvalable|) 91876) ((|HashTable| . |Functorial|) 91805) ((|HashTable| . |HomogeneousAggregate|) 91734) ((|HashTable| . |Eltable|) 91713) ((|HashTable| . |EltableAggregate|) 91692) ((|HashTable| . |KeyedDictionary|) 91671) ((|HashTable| . |SetCategory|) T) ((|HashTable| . |CoercibleTo|) 91645) ((|HashTable| . |BasicType|) T) ((|HashTable| . |Type|) T) ((|HashTable| . |Join|) T) ((|HashTable| . |Aggregate|) T) ((|HashTable| . |FiniteAggregate|) 91587) ((|HasAst| . |SpadSyntaxCategory|) T) ((|HasAst| . |HomotopicTo|) 91565) ((|HasAst| . |CoercibleTo|) 91520) ((|HasAst| . |CoercibleFrom|) 91498) ((|HasAst| . |SetCategory|) T) ((|HasAst| . |Type|) T) ((|HasAst| . |Join|) T) ((|HasAst| . |BasicType|) T) ((|HasAst| . |AbstractSyntaxCategory|) T) ((|Pi| . |Field|) T) ((|Pi| . |UniqueFactorizationDomain|) T) ((|Pi| . |PrincipalIdealDomain|) T) ((|Pi| . |IntegralDomain|) T) ((|Pi| . |CommutativeRing|) T) ((|Pi| . |CoercibleFrom|) 91432) ((|Pi| . |Module|) 91386) ((|Pi| . |LinearSet|) 91340) ((|Pi| . |Algebra|) 91294) ((|Pi| . |GcdDomain|) T) ((|Pi| . |EuclideanDomain|) T) ((|Pi| . |LeftModule|) 91248) ((|Pi| . |LeftLinearSet|) 91182) ((|Pi| . |Rng|) T) ((|Pi| . |SemiGroup|) T) ((|Pi| . |SemiRing|) T) ((|Pi| . |Monoid|) T) ((|Pi| . |Ring|) T) ((|Pi| . |BiModule|) 91127) ((|Pi| . |RightLinearSet|) 91081) ((|Pi| . |RightModule|) 91035) ((|Pi| . |AbelianGroup|) T) ((|Pi| . |AbelianMonoid|) T) ((|Pi| . |SetCategory|) T) ((|Pi| . |CoercibleTo|) 90967) ((|Pi| . |Type|) T) ((|Pi| . |Join|) T) ((|Pi| . |BasicType|) T) ((|Pi| . |AbelianSemiGroup|) T) ((|Pi| . |CancellationAbelianMonoid|) T) ((|Pi| . |EntireRing|) T) ((|Pi| . |DivisionRing|) T) ((|Pi| . |CharacteristicZero|) T) ((|Pi| . |RetractableTo|) 90916) ((|Pi| . |RealConstant|) T) ((|Pi| . |ConvertibleTo|) 90785) ((|GeneralTriangularSet| . |TriangularSetCategory|) 90754) ((|GeneralTriangularSet| . |ShallowlyMutableAggregate|) 90738) ((|GeneralTriangularSet| . |CoercibleTo|) 90690) ((|GeneralTriangularSet| . |Collection|) 90674) ((|GeneralTriangularSet| . |Aggregate|) T) ((|GeneralTriangularSet| . |Join|) T) ((|GeneralTriangularSet| . |Type|) T) ((|GeneralTriangularSet| . |BasicType|) T) ((|GeneralTriangularSet| . |Evalable|) 90598) ((|GeneralTriangularSet| . |InnerEvalable|) 90517) ((|GeneralTriangularSet| . |Functorial|) 90501) ((|GeneralTriangularSet| . |SetCategory|) T) ((|GeneralTriangularSet| . |HomogeneousAggregate|) 90485) ((|GeneralTriangularSet| . |ConvertibleTo|) 90421) ((|GeneralTriangularSet| . |FiniteAggregate|) 90405) ((|GeneralTriangularSet| . |PolynomialSetCategory|) 90374) ((|GeneralSparseTable| . |TableAggregate|) 90353) ((|GeneralSparseTable| . |Dictionary|) 90295) ((|GeneralSparseTable| . |BagAggregate|) 90237) ((|GeneralSparseTable| . |ShallowlyMutableAggregate|) 90166) ((|GeneralSparseTable| . |Collection|) 90108) ((|GeneralSparseTable| . |ConvertibleTo|) NIL) ((|GeneralSparseTable| . |DictionaryOperations|) 90050) ((|GeneralSparseTable| . |IndexedAggregate|) 90029) ((|GeneralSparseTable| . |Evalable|) 89789) ((|GeneralSparseTable| . |InnerEvalable|) 89537) ((|GeneralSparseTable| . |Functorial|) 89466) ((|GeneralSparseTable| . |HomogeneousAggregate|) 89395) ((|GeneralSparseTable| . |Eltable|) 89374) ((|GeneralSparseTable| . |EltableAggregate|) 89353) ((|GeneralSparseTable| . |KeyedDictionary|) 89332) ((|GeneralSparseTable| . |SetCategory|) T) ((|GeneralSparseTable| . |CoercibleTo|) 89306) ((|GeneralSparseTable| . |BasicType|) T) ((|GeneralSparseTable| . |Type|) T) ((|GeneralSparseTable| . |Join|) T) ((|GeneralSparseTable| . |Aggregate|) T) ((|GeneralSparseTable| . |FiniteAggregate|) 89248) ((|GeneralUnivariatePowerSeries| . |UnivariatePuiseuxSeriesCategory|) 89232) ((|GeneralUnivariatePowerSeries| . |DifferentialRing|) 89167) ((|GeneralUnivariatePowerSeries| . |DifferentialDomain|) 89096) ((|GeneralUnivariatePowerSeries| . |DifferentialSpace|) 89031) ((|GeneralUnivariatePowerSeries| . |Eltable|) 88978) ((|GeneralUnivariatePowerSeries| . |PartialDifferentialRing|) 88840) ((|GeneralUnivariatePowerSeries| . |PartialDifferentialDomain|) 88672) ((|GeneralUnivariatePowerSeries| . |PartialDifferentialSpace|) 88534) ((|GeneralUnivariatePowerSeries| . |PowerSeriesCategory|) 88467) ((|GeneralUnivariatePowerSeries| . |Algebra|) 88255) ((|GeneralUnivariatePowerSeries| . |BiModule|) 88023) ((|GeneralUnivariatePowerSeries| . |RightLinearSet|) 87805) ((|GeneralUnivariatePowerSeries| . |RightModule|) 87587) ((|GeneralUnivariatePowerSeries| . |LeftLinearSet|) 87436) ((|GeneralUnivariatePowerSeries| . |LeftModule|) 87305) ((|GeneralUnivariatePowerSeries| . |LinearSet|) 87093) ((|GeneralUnivariatePowerSeries| . |Module|) 86881) ((|GeneralUnivariatePowerSeries| . |CoercibleFrom|) 86649) ((|GeneralUnivariatePowerSeries| . |CharacteristicNonZero|) 86609) ((|GeneralUnivariatePowerSeries| . |CharacteristicZero|) 86572) ((|GeneralUnivariatePowerSeries| . |Functorial|) 86556) ((|GeneralUnivariatePowerSeries| . |AbelianMonoidRing|) 86515) ((|GeneralUnivariatePowerSeries| . |UnivariatePowerSeriesCategory|) 86474) ((|GeneralUnivariatePowerSeries| . |ArcHyperbolicFunctionCategory|) 86423) ((|GeneralUnivariatePowerSeries| . |ArcTrigonometricFunctionCategory|) 86372) ((|GeneralUnivariatePowerSeries| . |ElementaryFunctionCategory|) 86321) ((|GeneralUnivariatePowerSeries| . |HyperbolicFunctionCategory|) 86270) ((|GeneralUnivariatePowerSeries| . |TrigonometricFunctionCategory|) 86219) ((|GeneralUnivariatePowerSeries| . |TranscendentalFunctionCategory|) 86168) ((|GeneralUnivariatePowerSeries| . |RadicalCategory|) 86117) ((|GeneralUnivariatePowerSeries| . |DivisionRing|) 86093) ((|GeneralUnivariatePowerSeries| . |EntireRing|) 86032) ((|GeneralUnivariatePowerSeries| . |CancellationAbelianMonoid|) T) ((|GeneralUnivariatePowerSeries| . |AbelianSemiGroup|) T) ((|GeneralUnivariatePowerSeries| . |BasicType|) T) ((|GeneralUnivariatePowerSeries| . |Join|) T) ((|GeneralUnivariatePowerSeries| . |Type|) T) ((|GeneralUnivariatePowerSeries| . |CoercibleTo|) 86006) ((|GeneralUnivariatePowerSeries| . |SetCategory|) T) ((|GeneralUnivariatePowerSeries| . |AbelianMonoid|) T) ((|GeneralUnivariatePowerSeries| . |AbelianGroup|) T) ((|GeneralUnivariatePowerSeries| . |Ring|) T) ((|GeneralUnivariatePowerSeries| . |Monoid|) T) ((|GeneralUnivariatePowerSeries| . |SemiRing|) T) ((|GeneralUnivariatePowerSeries| . |SemiGroup|) T) ((|GeneralUnivariatePowerSeries| . |Rng|) T) ((|GeneralUnivariatePowerSeries| . |EuclideanDomain|) 85982) ((|GeneralUnivariatePowerSeries| . |GcdDomain|) 85958) ((|GeneralUnivariatePowerSeries| . |CommutativeRing|) 85864) ((|GeneralUnivariatePowerSeries| . |IntegralDomain|) 85803) ((|GeneralUnivariatePowerSeries| . |PrincipalIdealDomain|) 85779) ((|GeneralUnivariatePowerSeries| . |UniqueFactorizationDomain|) 85755) ((|GeneralUnivariatePowerSeries| . |Field|) 85731) ((|GraphImage| . |SetCategory|) T) ((|GraphImage| . |CoercibleTo|) 85705) ((|GraphImage| . |Type|) T) ((|GraphImage| . |Join|) T) ((|GraphImage| . |BasicType|) T) ((|GeneralPolynomialSet| . |PolynomialSetCategory|) 85674) ((|GeneralPolynomialSet| . |FiniteAggregate|) 85658) ((|GeneralPolynomialSet| . |ConvertibleTo|) 85594) ((|GeneralPolynomialSet| . |HomogeneousAggregate|) 85578) ((|GeneralPolynomialSet| . |SetCategory|) T) ((|GeneralPolynomialSet| . |Functorial|) 85562) ((|GeneralPolynomialSet| . |InnerEvalable|) 85481) ((|GeneralPolynomialSet| . |Evalable|) 85405) ((|GeneralPolynomialSet| . |CoercibleTo|) 85357) ((|GeneralPolynomialSet| . |BasicType|) T) ((|GeneralPolynomialSet| . |Type|) T) ((|GeneralPolynomialSet| . |Join|) T) ((|GeneralPolynomialSet| . |Aggregate|) T) ((|GeneralPolynomialSet| . |Collection|) 85341) ((|GeneralPolynomialSet| . |ShallowlyMutableAggregate|) 85325) ((|GeneralModulePolynomial| . |Module|) 85296) ((|GeneralModulePolynomial| . |LinearSet|) 85267) ((|GeneralModulePolynomial| . |LeftModule|) 85238) ((|GeneralModulePolynomial| . |LeftLinearSet|) 85189) ((|GeneralModulePolynomial| . |CancellationAbelianMonoid|) T) ((|GeneralModulePolynomial| . |AbelianSemiGroup|) T) ((|GeneralModulePolynomial| . |BasicType|) T) ((|GeneralModulePolynomial| . |Join|) T) ((|GeneralModulePolynomial| . |Type|) T) ((|GeneralModulePolynomial| . |CoercibleTo|) 85163) ((|GeneralModulePolynomial| . |SetCategory|) T) ((|GeneralModulePolynomial| . |AbelianMonoid|) T) ((|GeneralModulePolynomial| . |AbelianGroup|) T) ((|GeneralModulePolynomial| . |RightModule|) 85134) ((|GeneralModulePolynomial| . |RightLinearSet|) 85105) ((|GeneralModulePolynomial| . |BiModule|) 85066) ((|GeneralDistributedMultivariatePolynomial| . |PolynomialCategory|) 85016) ((|GeneralDistributedMultivariatePolynomial| . |CoercibleFrom|) 84688) ((|GeneralDistributedMultivariatePolynomial| . |RetractableTo|) 84495) ((|GeneralDistributedMultivariatePolynomial| . |UniqueFactorizationDomain|) 84445) ((|GeneralDistributedMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 84395) ((|GeneralDistributedMultivariatePolynomial| . |PatternMatchable|) NIL) ((|GeneralDistributedMultivariatePolynomial| . |PartialDifferentialSpace|) 84355) ((|GeneralDistributedMultivariatePolynomial| . |PartialDifferentialDomain|) 84313) ((|GeneralDistributedMultivariatePolynomial| . |PartialDifferentialRing|) 84273) ((|GeneralDistributedMultivariatePolynomial| . |InnerEvalable|) 84199) ((|GeneralDistributedMultivariatePolynomial| . |GcdDomain|) 84117) ((|GeneralDistributedMultivariatePolynomial| . |LinearlyExplicitRingOver|) 84033) ((|GeneralDistributedMultivariatePolynomial| . |LeftModule|) 83862) ((|GeneralDistributedMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 83846) ((|GeneralDistributedMultivariatePolynomial| . |AbelianMonoidRing|) 83825) ((|GeneralDistributedMultivariatePolynomial| . |Algebra|) 83588) ((|GeneralDistributedMultivariatePolynomial| . |LinearSet|) 83351) ((|GeneralDistributedMultivariatePolynomial| . |Module|) 83114) ((|GeneralDistributedMultivariatePolynomial| . |EntireRing|) 83000) ((|GeneralDistributedMultivariatePolynomial| . |IntegralDomain|) 82886) ((|GeneralDistributedMultivariatePolynomial| . |Functorial|) 82870) ((|GeneralDistributedMultivariatePolynomial| . |BiModule|) 82613) ((|GeneralDistributedMultivariatePolynomial| . |RightLinearSet|) 82370) ((|GeneralDistributedMultivariatePolynomial| . |RightModule|) 82127) ((|GeneralDistributedMultivariatePolynomial| . |CommutativeRing|) 81980) ((|GeneralDistributedMultivariatePolynomial| . |CharacteristicZero|) 81943) ((|GeneralDistributedMultivariatePolynomial| . |CharacteristicNonZero|) 81903) ((|GeneralDistributedMultivariatePolynomial| . |LeftLinearSet|) 81780) ((|GeneralDistributedMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|GeneralDistributedMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|GeneralDistributedMultivariatePolynomial| . |BasicType|) T) ((|GeneralDistributedMultivariatePolynomial| . |Join|) T) ((|GeneralDistributedMultivariatePolynomial| . |Type|) T) ((|GeneralDistributedMultivariatePolynomial| . |CoercibleTo|) 81754) ((|GeneralDistributedMultivariatePolynomial| . |SetCategory|) T) ((|GeneralDistributedMultivariatePolynomial| . |AbelianMonoid|) T) ((|GeneralDistributedMultivariatePolynomial| . |AbelianGroup|) T) ((|GeneralDistributedMultivariatePolynomial| . |Ring|) T) ((|GeneralDistributedMultivariatePolynomial| . |Monoid|) T) ((|GeneralDistributedMultivariatePolynomial| . |SemiRing|) T) ((|GeneralDistributedMultivariatePolynomial| . |SemiGroup|) T) ((|GeneralDistributedMultivariatePolynomial| . |Rng|) T) ((|GeneralDistributedMultivariatePolynomial| . |FullyRetractableTo|) 81738) ((|GeneralDistributedMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 81717) ((|GeneralDistributedMultivariatePolynomial| . |Evalable|) 81704) ((|GeneralDistributedMultivariatePolynomial| . |ConvertibleTo|) 81482) ((|GenericNonAssociativeAlgebra| . |FramedNonAssociativeAlgebra|) 81438) ((|GenericNonAssociativeAlgebra| . |NonAssociativeAlgebra|) 81394) ((|GenericNonAssociativeAlgebra| . |Monad|) T) ((|GenericNonAssociativeAlgebra| . |NonAssociativeRng|) T) ((|GenericNonAssociativeAlgebra| . |BiModule|) 81343) ((|GenericNonAssociativeAlgebra| . |RightLinearSet|) 81299) ((|GenericNonAssociativeAlgebra| . |RightModule|) 81255) ((|GenericNonAssociativeAlgebra| . |AbelianGroup|) T) ((|GenericNonAssociativeAlgebra| . |LeftLinearSet|) 81154) ((|GenericNonAssociativeAlgebra| . |AbelianMonoid|) T) ((|GenericNonAssociativeAlgebra| . |SetCategory|) T) ((|GenericNonAssociativeAlgebra| . |CoercibleTo|) 81128) ((|GenericNonAssociativeAlgebra| . |BasicType|) T) ((|GenericNonAssociativeAlgebra| . |AbelianSemiGroup|) T) ((|GenericNonAssociativeAlgebra| . |CancellationAbelianMonoid|) T) ((|GenericNonAssociativeAlgebra| . |LeftModule|) 81047) ((|GenericNonAssociativeAlgebra| . |LinearSet|) 81003) ((|GenericNonAssociativeAlgebra| . |Module|) 80959) ((|GenericNonAssociativeAlgebra| . |FiniteRankNonAssociativeAlgebra|) 80915) ((|GenericNonAssociativeAlgebra| . |Type|) T) ((|GenericNonAssociativeAlgebra| . |Join|) T) ((|GenericNonAssociativeAlgebra| . |Eltable|) 80859) ((|FunctionDescriptor| . |SetCategory|) T) ((|FunctionDescriptor| . |CoercibleTo|) 80833) ((|FunctionDescriptor| . |Type|) T) ((|FunctionDescriptor| . |Join|) T) ((|FunctionDescriptor| . |BasicType|) T) ((|FunctionCalled| . |SetCategory|) T) ((|FunctionCalled| . |CoercibleTo|) 80807) ((|FunctionCalled| . |Type|) T) ((|FunctionCalled| . |Join|) T) ((|FunctionCalled| . |BasicType|) T) ((|FortranType| . |SetCategory|) T) ((|FortranType| . |CoercibleTo|) 80781) ((|FortranType| . |Type|) T) ((|FortranType| . |Join|) T) ((|FortranType| . |BasicType|) T) ((|FortranScalarType| . |CoercibleTo|) 80712) ((|FourierSeries| . |Algebra|) 80696) ((|FourierSeries| . |CoercibleFrom|) 80660) ((|FourierSeries| . |LeftModule|) 80634) ((|FourierSeries| . |LeftLinearSet|) 80588) ((|FourierSeries| . |Rng|) T) ((|FourierSeries| . |SemiGroup|) T) ((|FourierSeries| . |SemiRing|) T) ((|FourierSeries| . |Monoid|) T) ((|FourierSeries| . |Ring|) T) ((|FourierSeries| . |BiModule|) 80567) ((|FourierSeries| . |RightLinearSet|) 80551) ((|FourierSeries| . |RightModule|) 80535) ((|FourierSeries| . |AbelianGroup|) T) ((|FourierSeries| . |AbelianMonoid|) T) ((|FourierSeries| . |SetCategory|) T) ((|FourierSeries| . |CoercibleTo|) 80509) ((|FourierSeries| . |Type|) T) ((|FourierSeries| . |Join|) T) ((|FourierSeries| . |BasicType|) T) ((|FourierSeries| . |AbelianSemiGroup|) T) ((|FourierSeries| . |CancellationAbelianMonoid|) T) ((|FourierSeries| . |LinearSet|) 80493) ((|FourierSeries| . |Module|) 80477) ((|FramedModule| . |Monoid|) T) ((|FramedModule| . |SetCategory|) T) ((|FramedModule| . |CoercibleTo|) 80451) ((|FramedModule| . |Type|) T) ((|FramedModule| . |Join|) T) ((|FramedModule| . |BasicType|) T) ((|FramedModule| . |SemiGroup|) T) ((|FractionalIdeal| . |Group|) T) ((|FractionalIdeal| . |SemiGroup|) T) ((|FractionalIdeal| . |BasicType|) T) ((|FractionalIdeal| . |Join|) T) ((|FractionalIdeal| . |Type|) T) ((|FractionalIdeal| . |CoercibleTo|) 80425) ((|FractionalIdeal| . |SetCategory|) T) ((|FractionalIdeal| . |Monoid|) T) ((|Fraction| . |QuotientFieldCategory|) 80409) ((|Fraction| . |StepThrough|) 80379) ((|Fraction| . |RetractableTo|) 80198) ((|Fraction| . |CoercibleFrom|) 80064) ((|Fraction| . |ConvertibleTo|) 79767) ((|Fraction| . |RealConstant|) 79736) ((|Fraction| . |PolynomialFactorizationExplicit|) 79686) ((|Fraction| . |Patternable|) 79670) ((|Fraction| . |OrderedRing|) 79630) ((|Fraction| . |OrderedCancellationAbelianMonoid|) 79590) ((|Fraction| . |OrderedAbelianSemiGroup|) 79550) ((|Fraction| . |OrderedType|) 79477) ((|Fraction| . |OrderedSet|) 79404) ((|Fraction| . |OrderedAbelianMonoid|) 79364) ((|Fraction| . |OrderedAbelianGroup|) 79324) ((|Fraction| . |OrderedIntegralDomain|) 79284) ((|Fraction| . |PatternMatchable|) 79165) ((|Fraction| . |FullyPatternMatchable|) 79149) ((|Fraction| . |LinearlyExplicitRingOver|) 79065) ((|Fraction| . |LeftModule|) 78938) ((|Fraction| . |FullyLinearlyExplicitRingOver|) 78922) ((|Fraction| . |Eltable|) 78875) ((|Fraction| . |Evalable|) 78834) ((|Fraction| . |InnerEvalable|) 78723) ((|Fraction| . |Functorial|) 78707) ((|Fraction| . |FullyEvalableOver|) 78691) ((|Fraction| . |DivisionRing|) T) ((|Fraction| . |BiModule|) 78618) ((|Fraction| . |RightLinearSet|) 78559) ((|Fraction| . |RightModule|) 78500) ((|Fraction| . |EntireRing|) T) ((|Fraction| . |Module|) 78441) ((|Fraction| . |LinearSet|) 78382) ((|Fraction| . |LeftLinearSet|) 78303) ((|Fraction| . |Algebra|) 78244) ((|Fraction| . |EuclideanDomain|) T) ((|Fraction| . |GcdDomain|) T) ((|Fraction| . |CommutativeRing|) T) ((|Fraction| . |IntegralDomain|) T) ((|Fraction| . |PrincipalIdealDomain|) T) ((|Fraction| . |UniqueFactorizationDomain|) T) ((|Fraction| . |Field|) T) ((|Fraction| . |DifferentialRing|) 78209) ((|Fraction| . |DifferentialDomain|) 78128) ((|Fraction| . |DifferentialSpace|) 78053) ((|Fraction| . |DifferentialSpaceExtension|) 78037) ((|Fraction| . |PartialDifferentialDomain|) 77909) ((|Fraction| . |PartialDifferentialSpace|) 77783) ((|Fraction| . |PartialDifferentialRing|) 77715) ((|Fraction| . |DifferentialExtension|) 77699) ((|Fraction| . |CharacteristicZero|) 77618) ((|Fraction| . |CharacteristicNonZero|) 77578) ((|Fraction| . |CancellationAbelianMonoid|) T) ((|Fraction| . |AbelianSemiGroup|) T) ((|Fraction| . |BasicType|) T) ((|Fraction| . |Join|) T) ((|Fraction| . |Type|) T) ((|Fraction| . |CoercibleTo|) 77552) ((|Fraction| . |SetCategory|) T) ((|Fraction| . |AbelianMonoid|) T) ((|Fraction| . |AbelianGroup|) T) ((|Fraction| . |Ring|) T) ((|Fraction| . |Monoid|) T) ((|Fraction| . |SemiRing|) T) ((|Fraction| . |SemiGroup|) T) ((|Fraction| . |Rng|) T) ((|Factored| . |IntegralDomain|) T) ((|Factored| . |EntireRing|) T) ((|Factored| . |CommutativeRing|) T) ((|Factored| . |CoercibleFrom|) 77423) ((|Factored| . |Module|) 77397) ((|Factored| . |LinearSet|) 77371) ((|Factored| . |LeftModule|) 77345) ((|Factored| . |LeftLinearSet|) 77299) ((|Factored| . |CancellationAbelianMonoid|) T) ((|Factored| . |AbelianSemiGroup|) T) ((|Factored| . |BasicType|) T) ((|Factored| . |Join|) T) ((|Factored| . |Type|) T) ((|Factored| . |CoercibleTo|) 77273) ((|Factored| . |SetCategory|) T) ((|Factored| . |AbelianMonoid|) T) ((|Factored| . |AbelianGroup|) T) ((|Factored| . |RightModule|) 77247) ((|Factored| . |RightLinearSet|) 77221) ((|Factored| . |BiModule|) 77188) ((|Factored| . |Ring|) T) ((|Factored| . |Monoid|) T) ((|Factored| . |SemiRing|) T) ((|Factored| . |SemiGroup|) T) ((|Factored| . |Rng|) T) ((|Factored| . |Algebra|) 77162) ((|Factored| . |DifferentialExtension|) 77146) ((|Factored| . |PartialDifferentialRing|) 77078) ((|Factored| . |PartialDifferentialSpace|) 76952) ((|Factored| . |PartialDifferentialDomain|) 76824) ((|Factored| . |DifferentialSpaceExtension|) 76808) ((|Factored| . |DifferentialSpace|) 76733) ((|Factored| . |DifferentialDomain|) 76652) ((|Factored| . |DifferentialRing|) 76617) ((|Factored| . |FullyEvalableOver|) 76601) ((|Factored| . |InnerEvalable|) 76401) ((|Factored| . |Functorial|) 76385) ((|Factored| . |Evalable|) 76305) ((|Factored| . |Eltable|) 76218) ((|Factored| . |FullyRetractableTo|) 76202) ((|Factored| . |RetractableTo|) 76046) ((|Factored| . |GcdDomain|) 75970) ((|Factored| . |RealConstant|) 75939) ((|Factored| . |ConvertibleTo|) 75805) ((|Factored| . |UniqueFactorizationDomain|) 75761) ((|FullPartialFractionExpansion| . |SetCategory|) T) ((|FullPartialFractionExpansion| . |CoercibleTo|) 75735) ((|FullPartialFractionExpansion| . |Type|) T) ((|FullPartialFractionExpansion| . |Join|) T) ((|FullPartialFractionExpansion| . |BasicType|) T) ((|FullPartialFractionExpansion| . |DifferentialSpace|) T) ((|FullPartialFractionExpansion| . |DifferentialDomain|) 75722) ((|FullPartialFractionExpansion| . |ConvertibleTo|) 75693) ((|FreeNilpotentLie| . |NonAssociativeAlgebra|) 75677) ((|FreeNilpotentLie| . |Monad|) T) ((|FreeNilpotentLie| . |NonAssociativeRng|) T) ((|FreeNilpotentLie| . |BiModule|) 75656) ((|FreeNilpotentLie| . |RightLinearSet|) 75640) ((|FreeNilpotentLie| . |RightModule|) 75624) ((|FreeNilpotentLie| . |AbelianGroup|) T) ((|FreeNilpotentLie| . |LeftLinearSet|) 75588) ((|FreeNilpotentLie| . |AbelianMonoid|) T) ((|FreeNilpotentLie| . |SetCategory|) T) ((|FreeNilpotentLie| . |CoercibleTo|) 75562) ((|FreeNilpotentLie| . |Type|) T) ((|FreeNilpotentLie| . |Join|) T) ((|FreeNilpotentLie| . |BasicType|) T) ((|FreeNilpotentLie| . |AbelianSemiGroup|) T) ((|FreeNilpotentLie| . |CancellationAbelianMonoid|) T) ((|FreeNilpotentLie| . |LeftModule|) 75546) ((|FreeNilpotentLie| . |LinearSet|) 75530) ((|FreeNilpotentLie| . |Module|) 75514) ((|FileName| . |FileNameCategory|) T) ((|FileName| . |BasicType|) T) ((|FileName| . |Join|) T) ((|FileName| . |Type|) T) ((|FileName| . |CoercibleTo|) 75469) ((|FileName| . |SetCategory|) T) ((|FileName| . |CoercibleFrom|) 75447) ((|FileName| . |HomotopicTo|) 75425) ((|FreeMonoid| . |FreeMonoidCategory|) 75409) ((|FreeMonoid| . |CoercibleFrom|) 75393) ((|FreeMonoid| . |RetractableTo|) 75377) ((|FreeMonoid| . |OrderedType|) 75348) ((|FreeMonoid| . |OrderedSet|) 75319) ((|FreeMonoid| . |SemiGroup|) T) ((|FreeMonoid| . |BasicType|) T) ((|FreeMonoid| . |Join|) T) ((|FreeMonoid| . |Type|) T) ((|FreeMonoid| . |CoercibleTo|) 75293) ((|FreeMonoid| . |SetCategory|) T) ((|FreeMonoid| . |Monoid|) T) ((|FreeMagma| . |OrderedSet|) T) ((|FreeMagma| . |CoercibleTo|) 75232) ((|FreeMagma| . |SetCategory|) T) ((|FreeMagma| . |BasicType|) T) ((|FreeMagma| . |Join|) T) ((|FreeMagma| . |Type|) T) ((|FreeMagma| . |OrderedType|) T) ((|FreeMagma| . |RetractableTo|) 75216) ((|FreeMagma| . |CoercibleFrom|) 75200) ((|FreeModule1| . |FreeModuleCat|) 75179) ((|FreeModule1| . |CoercibleFrom|) 75163) ((|FreeModule1| . |RetractableTo|) 75147) ((|FreeModule1| . |LinearSet|) 75104) ((|FreeModule1| . |Module|) 75061) ((|FreeModule1| . |Functorial|) 75045) ((|FreeModule1| . |LeftModule|) 75029) ((|FreeModule1| . |LeftLinearSet|) 74993) ((|FreeModule1| . |CancellationAbelianMonoid|) T) ((|FreeModule1| . |AbelianSemiGroup|) T) ((|FreeModule1| . |BasicType|) T) ((|FreeModule1| . |Join|) T) ((|FreeModule1| . |Type|) T) ((|FreeModule1| . |CoercibleTo|) 74967) ((|FreeModule1| . |SetCategory|) T) ((|FreeModule1| . |AbelianMonoid|) T) ((|FreeModule1| . |AbelianGroup|) T) ((|FreeModule1| . |RightModule|) 74951) ((|FreeModule1| . |RightLinearSet|) 74935) ((|FreeModule1| . |BiModule|) 74914) ((|FreeModule| . |BiModule|) 74893) ((|FreeModule| . |RightLinearSet|) 74877) ((|FreeModule| . |RightModule|) 74861) ((|FreeModule| . |AbelianGroup|) T) ((|FreeModule| . |LeftLinearSet|) 74825) ((|FreeModule| . |AbelianMonoid|) T) ((|FreeModule| . |SetCategory|) T) ((|FreeModule| . |CoercibleTo|) 74799) ((|FreeModule| . |Type|) T) ((|FreeModule| . |Join|) T) ((|FreeModule| . |BasicType|) T) ((|FreeModule| . |AbelianSemiGroup|) T) ((|FreeModule| . |CancellationAbelianMonoid|) T) ((|FreeModule| . |LeftModule|) 74783) ((|FreeModule| . |IndexedDirectProductCategory|) 74762) ((|FreeModule| . |Functorial|) 74746) ((|FreeModule| . |ConvertibleFrom|) 74693) ((|FreeModule| . |Module|) 74650) ((|FreeModule| . |LinearSet|) 74607) ((|Float| . |FloatingPointSystem|) T) ((|Float| . |CharacteristicZero|) T) ((|Float| . |CoercibleFrom|) 74541) ((|Float| . |LeftModule|) 74495) ((|Float| . |LeftLinearSet|) 74429) ((|Float| . |CancellationAbelianMonoid|) T) ((|Float| . |AbelianSemiGroup|) T) ((|Float| . |BasicType|) T) ((|Float| . |Join|) T) ((|Float| . |Type|) T) ((|Float| . |CoercibleTo|) 74379) ((|Float| . |SetCategory|) T) ((|Float| . |AbelianMonoid|) T) ((|Float| . |AbelianGroup|) T) ((|Float| . |Rng|) T) ((|Float| . |SemiGroup|) T) ((|Float| . |SemiRing|) T) ((|Float| . |Monoid|) T) ((|Float| . |Ring|) T) ((|Float| . |ConvertibleTo|) 74263) ((|Float| . |Field|) T) ((|Float| . |UniqueFactorizationDomain|) T) ((|Float| . |PrincipalIdealDomain|) T) ((|Float| . |IntegralDomain|) T) ((|Float| . |CommutativeRing|) T) ((|Float| . |Module|) 74217) ((|Float| . |LinearSet|) 74171) ((|Float| . |Algebra|) 74125) ((|Float| . |GcdDomain|) T) ((|Float| . |EuclideanDomain|) T) ((|Float| . |BiModule|) 74070) ((|Float| . |RightLinearSet|) 74024) ((|Float| . |RightModule|) 73978) ((|Float| . |EntireRing|) T) ((|Float| . |DivisionRing|) T) ((|Float| . |OrderedRing|) T) ((|Float| . |OrderedCancellationAbelianMonoid|) T) ((|Float| . |OrderedAbelianSemiGroup|) T) ((|Float| . |OrderedType|) T) ((|Float| . |OrderedSet|) T) ((|Float| . |OrderedAbelianMonoid|) T) ((|Float| . |OrderedAbelianGroup|) T) ((|Float| . |PatternMatchable|) 73957) ((|Float| . |RadicalCategory|) T) ((|Float| . |RealConstant|) T) ((|Float| . |RetractableTo|) 73906) ((|Float| . |RealNumberSystem|) T) ((|Float| . |DifferentialRing|) T) ((|Float| . |DifferentialDomain|) 73893) ((|Float| . |DifferentialSpace|) T) ((|Float| . |TranscendentalFunctionCategory|) T) ((|Float| . |TrigonometricFunctionCategory|) T) ((|Float| . |HyperbolicFunctionCategory|) T) ((|Float| . |ElementaryFunctionCategory|) T) ((|Float| . |ArcTrigonometricFunctionCategory|) T) ((|Float| . |ArcHyperbolicFunctionCategory|) T) ((|Float| . |ConvertibleFrom|) 73866) ((|File| . |FileCategory|) 73837) ((|File| . |BasicType|) T) ((|File| . |Join|) T) ((|File| . |Type|) T) ((|File| . |CoercibleTo|) 73811) ((|File| . |SetCategory|) T) ((|FreeGroup| . |Group|) T) ((|FreeGroup| . |SemiGroup|) T) ((|FreeGroup| . |BasicType|) T) ((|FreeGroup| . |Join|) T) ((|FreeGroup| . |Type|) T) ((|FreeGroup| . |CoercibleTo|) 73785) ((|FreeGroup| . |SetCategory|) T) ((|FreeGroup| . |Monoid|) T) ((|FreeGroup| . |RetractableTo|) 73769) ((|FreeGroup| . |CoercibleFrom|) 73753) ((|FiniteFieldExtension| . |FiniteAlgebraicExtensionField|) 73737) ((|FiniteFieldExtension| . |DifferentialRing|) 73712) ((|FiniteFieldExtension| . |DifferentialDomain|) 73681) ((|FiniteFieldExtension| . |DifferentialSpace|) 73656) ((|FiniteFieldExtension| . |Finite|) 73631) ((|FiniteFieldExtension| . |StepThrough|) 73606) ((|FiniteFieldExtension| . |FiniteFieldCategory|) 73581) ((|FiniteFieldExtension| . |CharacteristicZero|) 73544) ((|FiniteFieldExtension| . |CoercibleFrom|) 73465) ((|FiniteFieldExtension| . |LeftModule|) 73406) ((|FiniteFieldExtension| . |LeftLinearSet|) 73327) ((|FiniteFieldExtension| . |CancellationAbelianMonoid|) T) ((|FiniteFieldExtension| . |AbelianSemiGroup|) T) ((|FiniteFieldExtension| . |BasicType|) T) ((|FiniteFieldExtension| . |Join|) T) ((|FiniteFieldExtension| . |Type|) T) ((|FiniteFieldExtension| . |CoercibleTo|) 73301) ((|FiniteFieldExtension| . |SetCategory|) T) ((|FiniteFieldExtension| . |AbelianMonoid|) T) ((|FiniteFieldExtension| . |AbelianGroup|) T) ((|FiniteFieldExtension| . |Rng|) T) ((|FiniteFieldExtension| . |SemiGroup|) T) ((|FiniteFieldExtension| . |SemiRing|) T) ((|FiniteFieldExtension| . |Monoid|) T) ((|FiniteFieldExtension| . |Ring|) T) ((|FiniteFieldExtension| . |Field|) T) ((|FiniteFieldExtension| . |UniqueFactorizationDomain|) T) ((|FiniteFieldExtension| . |PrincipalIdealDomain|) T) ((|FiniteFieldExtension| . |IntegralDomain|) T) ((|FiniteFieldExtension| . |CommutativeRing|) T) ((|FiniteFieldExtension| . |Module|) 73242) ((|FiniteFieldExtension| . |LinearSet|) 73183) ((|FiniteFieldExtension| . |Algebra|) 73137) ((|FiniteFieldExtension| . |GcdDomain|) T) ((|FiniteFieldExtension| . |EuclideanDomain|) T) ((|FiniteFieldExtension| . |BiModule|) 73064) ((|FiniteFieldExtension| . |RightLinearSet|) 73005) ((|FiniteFieldExtension| . |RightModule|) 72946) ((|FiniteFieldExtension| . |EntireRing|) T) ((|FiniteFieldExtension| . |DivisionRing|) T) ((|FiniteFieldExtension| . |FieldOfPrimeCharacteristic|) 72877) ((|FiniteFieldExtension| . |CharacteristicNonZero|) 72808) ((|FiniteFieldExtension| . |RetractableTo|) 72792) ((|FiniteFieldExtension| . |VectorSpace|) 72776) ((|FiniteFieldExtension| . |ExtensionField|) 72760) ((|FiniteFieldExtensionByPolynomial| . |FiniteAlgebraicExtensionField|) 72744) ((|FiniteFieldExtensionByPolynomial| . |DifferentialRing|) 72719) ((|FiniteFieldExtensionByPolynomial| . |DifferentialDomain|) 72688) ((|FiniteFieldExtensionByPolynomial| . |DifferentialSpace|) 72663) ((|FiniteFieldExtensionByPolynomial| . |Finite|) 72638) ((|FiniteFieldExtensionByPolynomial| . |StepThrough|) 72613) ((|FiniteFieldExtensionByPolynomial| . |FiniteFieldCategory|) 72588) ((|FiniteFieldExtensionByPolynomial| . |CharacteristicZero|) 72551) ((|FiniteFieldExtensionByPolynomial| . |CoercibleFrom|) 72472) ((|FiniteFieldExtensionByPolynomial| . |LeftModule|) 72413) ((|FiniteFieldExtensionByPolynomial| . |LeftLinearSet|) 72334) ((|FiniteFieldExtensionByPolynomial| . |CancellationAbelianMonoid|) T) ((|FiniteFieldExtensionByPolynomial| . |AbelianSemiGroup|) T) ((|FiniteFieldExtensionByPolynomial| . |BasicType|) T) ((|FiniteFieldExtensionByPolynomial| . |Join|) T) ((|FiniteFieldExtensionByPolynomial| . |Type|) T) ((|FiniteFieldExtensionByPolynomial| . |CoercibleTo|) 72308) ((|FiniteFieldExtensionByPolynomial| . |SetCategory|) T) ((|FiniteFieldExtensionByPolynomial| . |AbelianMonoid|) T) ((|FiniteFieldExtensionByPolynomial| . |AbelianGroup|) T) ((|FiniteFieldExtensionByPolynomial| . |Rng|) T) ((|FiniteFieldExtensionByPolynomial| . |SemiGroup|) T) ((|FiniteFieldExtensionByPolynomial| . |SemiRing|) T) ((|FiniteFieldExtensionByPolynomial| . |Monoid|) T) ((|FiniteFieldExtensionByPolynomial| . |Ring|) T) ((|FiniteFieldExtensionByPolynomial| . |Field|) T) ((|FiniteFieldExtensionByPolynomial| . |UniqueFactorizationDomain|) T) ((|FiniteFieldExtensionByPolynomial| . |PrincipalIdealDomain|) T) ((|FiniteFieldExtensionByPolynomial| . |IntegralDomain|) T) ((|FiniteFieldExtensionByPolynomial| . |CommutativeRing|) T) ((|FiniteFieldExtensionByPolynomial| . |Module|) 72249) ((|FiniteFieldExtensionByPolynomial| . |LinearSet|) 72190) ((|FiniteFieldExtensionByPolynomial| . |Algebra|) 72144) ((|FiniteFieldExtensionByPolynomial| . |GcdDomain|) T) ((|FiniteFieldExtensionByPolynomial| . |EuclideanDomain|) T) ((|FiniteFieldExtensionByPolynomial| . |BiModule|) 72071) ((|FiniteFieldExtensionByPolynomial| . |RightLinearSet|) 72012) ((|FiniteFieldExtensionByPolynomial| . |RightModule|) 71953) ((|FiniteFieldExtensionByPolynomial| . |EntireRing|) T) ((|FiniteFieldExtensionByPolynomial| . |DivisionRing|) T) ((|FiniteFieldExtensionByPolynomial| . |FieldOfPrimeCharacteristic|) 71884) ((|FiniteFieldExtensionByPolynomial| . |CharacteristicNonZero|) 71815) ((|FiniteFieldExtensionByPolynomial| . |RetractableTo|) 71799) ((|FiniteFieldExtensionByPolynomial| . |VectorSpace|) 71783) ((|FiniteFieldExtensionByPolynomial| . |ExtensionField|) 71767) ((|FiniteFieldNormalBasisExtension| . |FiniteAlgebraicExtensionField|) 71751) ((|FiniteFieldNormalBasisExtension| . |DifferentialRing|) 71726) ((|FiniteFieldNormalBasisExtension| . |DifferentialDomain|) 71695) ((|FiniteFieldNormalBasisExtension| . |DifferentialSpace|) 71670) ((|FiniteFieldNormalBasisExtension| . |Finite|) 71645) ((|FiniteFieldNormalBasisExtension| . |StepThrough|) 71620) ((|FiniteFieldNormalBasisExtension| . |FiniteFieldCategory|) 71595) ((|FiniteFieldNormalBasisExtension| . |CharacteristicZero|) 71558) ((|FiniteFieldNormalBasisExtension| . |CoercibleFrom|) 71479) ((|FiniteFieldNormalBasisExtension| . |LeftModule|) 71420) ((|FiniteFieldNormalBasisExtension| . |LeftLinearSet|) 71341) ((|FiniteFieldNormalBasisExtension| . |CancellationAbelianMonoid|) T) ((|FiniteFieldNormalBasisExtension| . |AbelianSemiGroup|) T) ((|FiniteFieldNormalBasisExtension| . |BasicType|) T) ((|FiniteFieldNormalBasisExtension| . |Join|) T) ((|FiniteFieldNormalBasisExtension| . |Type|) T) ((|FiniteFieldNormalBasisExtension| . |CoercibleTo|) 71315) ((|FiniteFieldNormalBasisExtension| . |SetCategory|) T) ((|FiniteFieldNormalBasisExtension| . |AbelianMonoid|) T) ((|FiniteFieldNormalBasisExtension| . |AbelianGroup|) T) ((|FiniteFieldNormalBasisExtension| . |Rng|) T) ((|FiniteFieldNormalBasisExtension| . |SemiGroup|) T) ((|FiniteFieldNormalBasisExtension| . |SemiRing|) T) ((|FiniteFieldNormalBasisExtension| . |Monoid|) T) ((|FiniteFieldNormalBasisExtension| . |Ring|) T) ((|FiniteFieldNormalBasisExtension| . |Field|) T) ((|FiniteFieldNormalBasisExtension| . |UniqueFactorizationDomain|) T) ((|FiniteFieldNormalBasisExtension| . |PrincipalIdealDomain|) T) ((|FiniteFieldNormalBasisExtension| . |IntegralDomain|) T) ((|FiniteFieldNormalBasisExtension| . |CommutativeRing|) T) ((|FiniteFieldNormalBasisExtension| . |Module|) 71256) ((|FiniteFieldNormalBasisExtension| . |LinearSet|) 71197) ((|FiniteFieldNormalBasisExtension| . |Algebra|) 71151) ((|FiniteFieldNormalBasisExtension| . |GcdDomain|) T) ((|FiniteFieldNormalBasisExtension| . |EuclideanDomain|) T) ((|FiniteFieldNormalBasisExtension| . |BiModule|) 71078) ((|FiniteFieldNormalBasisExtension| . |RightLinearSet|) 71019) ((|FiniteFieldNormalBasisExtension| . |RightModule|) 70960) ((|FiniteFieldNormalBasisExtension| . |EntireRing|) T) ((|FiniteFieldNormalBasisExtension| . |DivisionRing|) T) ((|FiniteFieldNormalBasisExtension| . |FieldOfPrimeCharacteristic|) 70891) ((|FiniteFieldNormalBasisExtension| . |CharacteristicNonZero|) 70822) ((|FiniteFieldNormalBasisExtension| . |RetractableTo|) 70806) ((|FiniteFieldNormalBasisExtension| . |VectorSpace|) 70790) ((|FiniteFieldNormalBasisExtension| . |ExtensionField|) 70774) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |FiniteAlgebraicExtensionField|) 70758) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |DifferentialRing|) 70733) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |DifferentialDomain|) 70702) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |DifferentialSpace|) 70677) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Finite|) 70652) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |StepThrough|) 70627) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |FiniteFieldCategory|) 70602) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CharacteristicZero|) 70565) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CoercibleFrom|) 70486) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |LeftModule|) 70427) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |LeftLinearSet|) 70348) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CancellationAbelianMonoid|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |AbelianSemiGroup|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |BasicType|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Join|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Type|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CoercibleTo|) 70322) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |SetCategory|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |AbelianMonoid|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |AbelianGroup|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Rng|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |SemiGroup|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |SemiRing|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Monoid|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Ring|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Field|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |UniqueFactorizationDomain|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |PrincipalIdealDomain|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |IntegralDomain|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CommutativeRing|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Module|) 70263) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |LinearSet|) 70204) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |Algebra|) 70158) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |GcdDomain|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |EuclideanDomain|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |BiModule|) 70085) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |RightLinearSet|) 70026) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |RightModule|) 69967) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |EntireRing|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |DivisionRing|) T) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |FieldOfPrimeCharacteristic|) 69898) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |CharacteristicNonZero|) 69829) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |RetractableTo|) 69813) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |VectorSpace|) 69797) ((|FiniteFieldNormalBasisExtensionByPolynomial| . |ExtensionField|) 69781) ((|FiniteFieldNormalBasis| . |FiniteAlgebraicExtensionField|) 69750) ((|FiniteFieldNormalBasis| . |DifferentialRing|) T) ((|FiniteFieldNormalBasis| . |DifferentialDomain|) 69737) ((|FiniteFieldNormalBasis| . |DifferentialSpace|) T) ((|FiniteFieldNormalBasis| . |Finite|) T) ((|FiniteFieldNormalBasis| . |StepThrough|) T) ((|FiniteFieldNormalBasis| . |FiniteFieldCategory|) T) ((|FiniteFieldNormalBasis| . |CharacteristicZero|) 69703) ((|FiniteFieldNormalBasis| . |CoercibleFrom|) 69609) ((|FiniteFieldNormalBasis| . |LeftModule|) 69535) ((|FiniteFieldNormalBasis| . |LeftLinearSet|) 69441) ((|FiniteFieldNormalBasis| . |CancellationAbelianMonoid|) T) ((|FiniteFieldNormalBasis| . |AbelianSemiGroup|) T) ((|FiniteFieldNormalBasis| . |BasicType|) T) ((|FiniteFieldNormalBasis| . |Join|) T) ((|FiniteFieldNormalBasis| . |Type|) T) ((|FiniteFieldNormalBasis| . |CoercibleTo|) 69415) ((|FiniteFieldNormalBasis| . |SetCategory|) T) ((|FiniteFieldNormalBasis| . |AbelianMonoid|) T) ((|FiniteFieldNormalBasis| . |AbelianGroup|) T) ((|FiniteFieldNormalBasis| . |Rng|) T) ((|FiniteFieldNormalBasis| . |SemiGroup|) T) ((|FiniteFieldNormalBasis| . |SemiRing|) T) ((|FiniteFieldNormalBasis| . |Monoid|) T) ((|FiniteFieldNormalBasis| . |Ring|) T) ((|FiniteFieldNormalBasis| . |Field|) T) ((|FiniteFieldNormalBasis| . |UniqueFactorizationDomain|) T) ((|FiniteFieldNormalBasis| . |PrincipalIdealDomain|) T) ((|FiniteFieldNormalBasis| . |IntegralDomain|) T) ((|FiniteFieldNormalBasis| . |CommutativeRing|) T) ((|FiniteFieldNormalBasis| . |Module|) 69341) ((|FiniteFieldNormalBasis| . |LinearSet|) 69267) ((|FiniteFieldNormalBasis| . |Algebra|) 69221) ((|FiniteFieldNormalBasis| . |GcdDomain|) T) ((|FiniteFieldNormalBasis| . |EuclideanDomain|) T) ((|FiniteFieldNormalBasis| . |BiModule|) 69131) ((|FiniteFieldNormalBasis| . |RightLinearSet|) 69057) ((|FiniteFieldNormalBasis| . |RightModule|) 68983) ((|FiniteFieldNormalBasis| . |EntireRing|) T) ((|FiniteFieldNormalBasis| . |DivisionRing|) T) ((|FiniteFieldNormalBasis| . |FieldOfPrimeCharacteristic|) T) ((|FiniteFieldNormalBasis| . |CharacteristicNonZero|) T) ((|FiniteFieldNormalBasis| . |RetractableTo|) 68952) ((|FiniteFieldNormalBasis| . |VectorSpace|) 68921) ((|FiniteFieldNormalBasis| . |ExtensionField|) 68890) ((|FiniteFieldCyclicGroupExtension| . |FiniteAlgebraicExtensionField|) 68874) ((|FiniteFieldCyclicGroupExtension| . |DifferentialRing|) 68849) ((|FiniteFieldCyclicGroupExtension| . |DifferentialDomain|) 68818) ((|FiniteFieldCyclicGroupExtension| . |DifferentialSpace|) 68793) ((|FiniteFieldCyclicGroupExtension| . |Finite|) 68768) ((|FiniteFieldCyclicGroupExtension| . |StepThrough|) 68743) ((|FiniteFieldCyclicGroupExtension| . |FiniteFieldCategory|) 68718) ((|FiniteFieldCyclicGroupExtension| . |CharacteristicZero|) 68681) ((|FiniteFieldCyclicGroupExtension| . |CoercibleFrom|) 68602) ((|FiniteFieldCyclicGroupExtension| . |LeftModule|) 68543) ((|FiniteFieldCyclicGroupExtension| . |LeftLinearSet|) 68464) ((|FiniteFieldCyclicGroupExtension| . |CancellationAbelianMonoid|) T) ((|FiniteFieldCyclicGroupExtension| . |AbelianSemiGroup|) T) ((|FiniteFieldCyclicGroupExtension| . |BasicType|) T) ((|FiniteFieldCyclicGroupExtension| . |Join|) T) ((|FiniteFieldCyclicGroupExtension| . |Type|) T) ((|FiniteFieldCyclicGroupExtension| . |CoercibleTo|) 68438) ((|FiniteFieldCyclicGroupExtension| . |SetCategory|) T) ((|FiniteFieldCyclicGroupExtension| . |AbelianMonoid|) T) ((|FiniteFieldCyclicGroupExtension| . |AbelianGroup|) T) ((|FiniteFieldCyclicGroupExtension| . |Rng|) T) ((|FiniteFieldCyclicGroupExtension| . |SemiGroup|) T) ((|FiniteFieldCyclicGroupExtension| . |SemiRing|) T) ((|FiniteFieldCyclicGroupExtension| . |Monoid|) T) ((|FiniteFieldCyclicGroupExtension| . |Ring|) T) ((|FiniteFieldCyclicGroupExtension| . |Field|) T) ((|FiniteFieldCyclicGroupExtension| . |UniqueFactorizationDomain|) T) ((|FiniteFieldCyclicGroupExtension| . |PrincipalIdealDomain|) T) ((|FiniteFieldCyclicGroupExtension| . |IntegralDomain|) T) ((|FiniteFieldCyclicGroupExtension| . |CommutativeRing|) T) ((|FiniteFieldCyclicGroupExtension| . |Module|) 68379) ((|FiniteFieldCyclicGroupExtension| . |LinearSet|) 68320) ((|FiniteFieldCyclicGroupExtension| . |Algebra|) 68274) ((|FiniteFieldCyclicGroupExtension| . |GcdDomain|) T) ((|FiniteFieldCyclicGroupExtension| . |EuclideanDomain|) T) ((|FiniteFieldCyclicGroupExtension| . |BiModule|) 68201) ((|FiniteFieldCyclicGroupExtension| . |RightLinearSet|) 68142) ((|FiniteFieldCyclicGroupExtension| . |RightModule|) 68083) ((|FiniteFieldCyclicGroupExtension| . |EntireRing|) T) ((|FiniteFieldCyclicGroupExtension| . |DivisionRing|) T) ((|FiniteFieldCyclicGroupExtension| . |FieldOfPrimeCharacteristic|) 68014) ((|FiniteFieldCyclicGroupExtension| . |CharacteristicNonZero|) 67945) ((|FiniteFieldCyclicGroupExtension| . |RetractableTo|) 67929) ((|FiniteFieldCyclicGroupExtension| . |VectorSpace|) 67913) ((|FiniteFieldCyclicGroupExtension| . |ExtensionField|) 67897) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |FiniteAlgebraicExtensionField|) 67881) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |DifferentialRing|) 67856) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |DifferentialDomain|) 67825) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |DifferentialSpace|) 67800) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Finite|) 67775) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |StepThrough|) 67750) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |FiniteFieldCategory|) 67725) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CharacteristicZero|) 67688) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CoercibleFrom|) 67609) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |LeftModule|) 67550) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |LeftLinearSet|) 67471) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CancellationAbelianMonoid|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |AbelianSemiGroup|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |BasicType|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Join|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Type|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CoercibleTo|) 67445) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |SetCategory|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |AbelianMonoid|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |AbelianGroup|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Rng|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |SemiGroup|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |SemiRing|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Monoid|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Ring|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Field|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |UniqueFactorizationDomain|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |PrincipalIdealDomain|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |IntegralDomain|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CommutativeRing|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Module|) 67386) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |LinearSet|) 67327) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |Algebra|) 67281) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |GcdDomain|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |EuclideanDomain|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |BiModule|) 67208) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |RightLinearSet|) 67149) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |RightModule|) 67090) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |EntireRing|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |DivisionRing|) T) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |FieldOfPrimeCharacteristic|) 67021) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |CharacteristicNonZero|) 66952) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |RetractableTo|) 66936) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |VectorSpace|) 66920) ((|FiniteFieldCyclicGroupExtensionByPolynomial| . |ExtensionField|) 66904) ((|FiniteFieldCyclicGroup| . |FiniteAlgebraicExtensionField|) 66873) ((|FiniteFieldCyclicGroup| . |DifferentialRing|) T) ((|FiniteFieldCyclicGroup| . |DifferentialDomain|) 66860) ((|FiniteFieldCyclicGroup| . |DifferentialSpace|) T) ((|FiniteFieldCyclicGroup| . |Finite|) T) ((|FiniteFieldCyclicGroup| . |StepThrough|) T) ((|FiniteFieldCyclicGroup| . |FiniteFieldCategory|) T) ((|FiniteFieldCyclicGroup| . |CharacteristicZero|) 66826) ((|FiniteFieldCyclicGroup| . |CoercibleFrom|) 66732) ((|FiniteFieldCyclicGroup| . |LeftModule|) 66658) ((|FiniteFieldCyclicGroup| . |LeftLinearSet|) 66564) ((|FiniteFieldCyclicGroup| . |CancellationAbelianMonoid|) T) ((|FiniteFieldCyclicGroup| . |AbelianSemiGroup|) T) ((|FiniteFieldCyclicGroup| . |BasicType|) T) ((|FiniteFieldCyclicGroup| . |Join|) T) ((|FiniteFieldCyclicGroup| . |Type|) T) ((|FiniteFieldCyclicGroup| . |CoercibleTo|) 66538) ((|FiniteFieldCyclicGroup| . |SetCategory|) T) ((|FiniteFieldCyclicGroup| . |AbelianMonoid|) T) ((|FiniteFieldCyclicGroup| . |AbelianGroup|) T) ((|FiniteFieldCyclicGroup| . |Rng|) T) ((|FiniteFieldCyclicGroup| . |SemiGroup|) T) ((|FiniteFieldCyclicGroup| . |SemiRing|) T) ((|FiniteFieldCyclicGroup| . |Monoid|) T) ((|FiniteFieldCyclicGroup| . |Ring|) T) ((|FiniteFieldCyclicGroup| . |Field|) T) ((|FiniteFieldCyclicGroup| . |UniqueFactorizationDomain|) T) ((|FiniteFieldCyclicGroup| . |PrincipalIdealDomain|) T) ((|FiniteFieldCyclicGroup| . |IntegralDomain|) T) ((|FiniteFieldCyclicGroup| . |CommutativeRing|) T) ((|FiniteFieldCyclicGroup| . |Module|) 66464) ((|FiniteFieldCyclicGroup| . |LinearSet|) 66390) ((|FiniteFieldCyclicGroup| . |Algebra|) 66344) ((|FiniteFieldCyclicGroup| . |GcdDomain|) T) ((|FiniteFieldCyclicGroup| . |EuclideanDomain|) T) ((|FiniteFieldCyclicGroup| . |BiModule|) 66254) ((|FiniteFieldCyclicGroup| . |RightLinearSet|) 66180) ((|FiniteFieldCyclicGroup| . |RightModule|) 66106) ((|FiniteFieldCyclicGroup| . |EntireRing|) T) ((|FiniteFieldCyclicGroup| . |DivisionRing|) T) ((|FiniteFieldCyclicGroup| . |FieldOfPrimeCharacteristic|) T) ((|FiniteFieldCyclicGroup| . |CharacteristicNonZero|) T) ((|FiniteFieldCyclicGroup| . |RetractableTo|) 66075) ((|FiniteFieldCyclicGroup| . |VectorSpace|) 66044) ((|FiniteFieldCyclicGroup| . |ExtensionField|) 66013) ((|FiniteField| . |FiniteAlgebraicExtensionField|) 65982) ((|FiniteField| . |DifferentialRing|) T) ((|FiniteField| . |DifferentialDomain|) 65969) ((|FiniteField| . |DifferentialSpace|) T) ((|FiniteField| . |Finite|) T) ((|FiniteField| . |StepThrough|) T) ((|FiniteField| . |FiniteFieldCategory|) T) ((|FiniteField| . |CharacteristicZero|) 65935) ((|FiniteField| . |CoercibleFrom|) 65841) ((|FiniteField| . |LeftModule|) 65767) ((|FiniteField| . |LeftLinearSet|) 65673) ((|FiniteField| . |CancellationAbelianMonoid|) T) ((|FiniteField| . |AbelianSemiGroup|) T) ((|FiniteField| . |BasicType|) T) ((|FiniteField| . |Join|) T) ((|FiniteField| . |Type|) T) ((|FiniteField| . |CoercibleTo|) 65647) ((|FiniteField| . |SetCategory|) T) ((|FiniteField| . |AbelianMonoid|) T) ((|FiniteField| . |AbelianGroup|) T) ((|FiniteField| . |Rng|) T) ((|FiniteField| . |SemiGroup|) T) ((|FiniteField| . |SemiRing|) T) ((|FiniteField| . |Monoid|) T) ((|FiniteField| . |Ring|) T) ((|FiniteField| . |Field|) T) ((|FiniteField| . |UniqueFactorizationDomain|) T) ((|FiniteField| . |PrincipalIdealDomain|) T) ((|FiniteField| . |IntegralDomain|) T) ((|FiniteField| . |CommutativeRing|) T) ((|FiniteField| . |Module|) 65573) ((|FiniteField| . |LinearSet|) 65499) ((|FiniteField| . |Algebra|) 65453) ((|FiniteField| . |GcdDomain|) T) ((|FiniteField| . |EuclideanDomain|) T) ((|FiniteField| . |BiModule|) 65363) ((|FiniteField| . |RightLinearSet|) 65289) ((|FiniteField| . |RightModule|) 65215) ((|FiniteField| . |EntireRing|) T) ((|FiniteField| . |DivisionRing|) T) ((|FiniteField| . |FieldOfPrimeCharacteristic|) T) ((|FiniteField| . |CharacteristicNonZero|) T) ((|FiniteField| . |RetractableTo|) 65184) ((|FiniteField| . |VectorSpace|) 65153) ((|FiniteField| . |ExtensionField|) 65122) ((|FiniteDivisor| . |FiniteDivisorCategory|) 65091) ((|FiniteDivisor| . |CancellationAbelianMonoid|) T) ((|FiniteDivisor| . |AbelianSemiGroup|) T) ((|FiniteDivisor| . |BasicType|) T) ((|FiniteDivisor| . |Join|) T) ((|FiniteDivisor| . |Type|) T) ((|FiniteDivisor| . |CoercibleTo|) 65065) ((|FiniteDivisor| . |SetCategory|) T) ((|FiniteDivisor| . |AbelianMonoid|) T) ((|FiniteDivisor| . |LeftLinearSet|) 65042) ((|FiniteDivisor| . |AbelianGroup|) T) ((|FunctorData| . |SetCategory|) T) ((|FunctorData| . |CoercibleTo|) 65016) ((|FunctorData| . |Type|) T) ((|FunctorData| . |Join|) T) ((|FunctorData| . |BasicType|) T) ((|FourierComponent| . |OrderedSet|) T) ((|FourierComponent| . |CoercibleTo|) 64990) ((|FourierComponent| . |SetCategory|) T) ((|FourierComponent| . |BasicType|) T) ((|FourierComponent| . |Join|) T) ((|FourierComponent| . |Type|) T) ((|FourierComponent| . |OrderedType|) T) ((|FlexibleArray| . |OneDimensionalArrayAggregate|) 64974) ((|FlexibleArray| . |ShallowlyMutableAggregate|) 64958) ((|FlexibleArray| . |FiniteAggregate|) 64942) ((|FlexibleArray| . |Aggregate|) T) ((|FlexibleArray| . |Join|) T) ((|FlexibleArray| . |Type|) T) ((|FlexibleArray| . |BasicType|) 64852) ((|FlexibleArray| . |CoercibleTo|) 64726) ((|FlexibleArray| . |Evalable|) 64650) ((|FlexibleArray| . |InnerEvalable|) 64569) ((|FlexibleArray| . |Functorial|) 64553) ((|FlexibleArray| . |SetCategory|) 64490) ((|FlexibleArray| . |HomogeneousAggregate|) 64474) ((|FlexibleArray| . |LinearAggregate|) 64458) ((|FlexibleArray| . |EltableAggregate|) 64430) ((|FlexibleArray| . |Eltable|) 64359) ((|FlexibleArray| . |IndexedAggregate|) 64331) ((|FlexibleArray| . |ConvertibleTo|) 64267) ((|FlexibleArray| . |Collection|) 64251) ((|FlexibleArray| . |OrderedSet|) 64222) ((|FlexibleArray| . |OrderedType|) 64193) ((|FlexibleArray| . |FiniteLinearAggregate|) 64177) ((|FlexibleArray| . |ExtensibleLinearAggregate|) 64161) ((|FreeAbelianMonoid| . |FreeAbelianMonoidCategory|) 64122) ((|FreeAbelianMonoid| . |CoercibleFrom|) 64106) ((|FreeAbelianMonoid| . |RetractableTo|) 64090) ((|FreeAbelianMonoid| . |AbelianMonoid|) T) ((|FreeAbelianMonoid| . |SetCategory|) T) ((|FreeAbelianMonoid| . |CoercibleTo|) 64064) ((|FreeAbelianMonoid| . |Type|) T) ((|FreeAbelianMonoid| . |Join|) T) ((|FreeAbelianMonoid| . |BasicType|) T) ((|FreeAbelianMonoid| . |AbelianSemiGroup|) T) ((|FreeAbelianMonoid| . |CancellationAbelianMonoid|) T) ((|FreeAbelianGroup| . |AbelianGroup|) T) ((|FreeAbelianGroup| . |LeftLinearSet|) 64041) ((|FreeAbelianGroup| . |AbelianMonoid|) T) ((|FreeAbelianGroup| . |SetCategory|) T) ((|FreeAbelianGroup| . |CoercibleTo|) 64015) ((|FreeAbelianGroup| . |Type|) T) ((|FreeAbelianGroup| . |Join|) T) ((|FreeAbelianGroup| . |BasicType|) T) ((|FreeAbelianGroup| . |AbelianSemiGroup|) T) ((|FreeAbelianGroup| . |CancellationAbelianMonoid|) T) ((|FreeAbelianGroup| . |Module|) 63992) ((|FreeAbelianGroup| . |LinearSet|) 63969) ((|FreeAbelianGroup| . |LeftModule|) 63946) ((|FreeAbelianGroup| . |RightModule|) 63923) ((|FreeAbelianGroup| . |RightLinearSet|) 63900) ((|FreeAbelianGroup| . |BiModule|) 63870) ((|FreeAbelianGroup| . |FreeAbelianMonoidCategory|) 63842) ((|FreeAbelianGroup| . |CoercibleFrom|) 63826) ((|FreeAbelianGroup| . |RetractableTo|) 63810) ((|FreeAbelianGroup| . |OrderedSet|) 63781) ((|FreeAbelianGroup| . |OrderedType|) 63752) ((|ExponentialOfUnivariatePuiseuxSeries| . |UnivariatePuiseuxSeriesCategory|) 63736) ((|ExponentialOfUnivariatePuiseuxSeries| . |DifferentialRing|) 63671) ((|ExponentialOfUnivariatePuiseuxSeries| . |DifferentialDomain|) 63600) ((|ExponentialOfUnivariatePuiseuxSeries| . |DifferentialSpace|) 63535) ((|ExponentialOfUnivariatePuiseuxSeries| . |Eltable|) 63482) ((|ExponentialOfUnivariatePuiseuxSeries| . |PartialDifferentialRing|) 63344) ((|ExponentialOfUnivariatePuiseuxSeries| . |PartialDifferentialDomain|) 63204) ((|ExponentialOfUnivariatePuiseuxSeries| . |PartialDifferentialSpace|) 63066) ((|ExponentialOfUnivariatePuiseuxSeries| . |PowerSeriesCategory|) 62999) ((|ExponentialOfUnivariatePuiseuxSeries| . |Algebra|) 62787) ((|ExponentialOfUnivariatePuiseuxSeries| . |BiModule|) 62555) ((|ExponentialOfUnivariatePuiseuxSeries| . |RightLinearSet|) 62337) ((|ExponentialOfUnivariatePuiseuxSeries| . |RightModule|) 62119) ((|ExponentialOfUnivariatePuiseuxSeries| . |LeftLinearSet|) 61968) ((|ExponentialOfUnivariatePuiseuxSeries| . |LeftModule|) 61837) ((|ExponentialOfUnivariatePuiseuxSeries| . |LinearSet|) 61625) ((|ExponentialOfUnivariatePuiseuxSeries| . |Module|) 61413) ((|ExponentialOfUnivariatePuiseuxSeries| . |CoercibleFrom|) 61181) ((|ExponentialOfUnivariatePuiseuxSeries| . |CharacteristicNonZero|) 61141) ((|ExponentialOfUnivariatePuiseuxSeries| . |CharacteristicZero|) 61104) ((|ExponentialOfUnivariatePuiseuxSeries| . |Functorial|) 61088) ((|ExponentialOfUnivariatePuiseuxSeries| . |AbelianMonoidRing|) 61047) ((|ExponentialOfUnivariatePuiseuxSeries| . |UnivariatePowerSeriesCategory|) 61006) ((|ExponentialOfUnivariatePuiseuxSeries| . |ArcHyperbolicFunctionCategory|) 60955) ((|ExponentialOfUnivariatePuiseuxSeries| . |ArcTrigonometricFunctionCategory|) 60904) ((|ExponentialOfUnivariatePuiseuxSeries| . |ElementaryFunctionCategory|) 60853) ((|ExponentialOfUnivariatePuiseuxSeries| . |HyperbolicFunctionCategory|) 60802) ((|ExponentialOfUnivariatePuiseuxSeries| . |TrigonometricFunctionCategory|) 60751) ((|ExponentialOfUnivariatePuiseuxSeries| . |TranscendentalFunctionCategory|) 60700) ((|ExponentialOfUnivariatePuiseuxSeries| . |RadicalCategory|) 60649) ((|ExponentialOfUnivariatePuiseuxSeries| . |DivisionRing|) 60625) ((|ExponentialOfUnivariatePuiseuxSeries| . |EntireRing|) 60564) ((|ExponentialOfUnivariatePuiseuxSeries| . |CancellationAbelianMonoid|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |AbelianSemiGroup|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |BasicType|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |Join|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |Type|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |CoercibleTo|) 60538) ((|ExponentialOfUnivariatePuiseuxSeries| . |SetCategory|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |AbelianMonoid|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |AbelianGroup|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |Ring|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |Monoid|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |SemiRing|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |SemiGroup|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |Rng|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |EuclideanDomain|) 60514) ((|ExponentialOfUnivariatePuiseuxSeries| . |GcdDomain|) 60490) ((|ExponentialOfUnivariatePuiseuxSeries| . |CommutativeRing|) 60396) ((|ExponentialOfUnivariatePuiseuxSeries| . |IntegralDomain|) 60335) ((|ExponentialOfUnivariatePuiseuxSeries| . |PrincipalIdealDomain|) 60311) ((|ExponentialOfUnivariatePuiseuxSeries| . |UniqueFactorizationDomain|) 60287) ((|ExponentialOfUnivariatePuiseuxSeries| . |Field|) 60263) ((|ExponentialOfUnivariatePuiseuxSeries| . |OrderedAbelianMonoid|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |OrderedSet|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |OrderedType|) T) ((|ExponentialOfUnivariatePuiseuxSeries| . |OrderedAbelianSemiGroup|) T) ((|Expression| . |FunctionSpace|) 60247) ((|Expression| . |CoercibleFrom|) 59597) ((|Expression| . |RetractableTo|) 59101) ((|Expression| . |ConvertibleTo|) 58879) ((|Expression| . |Patternable|) 58863) ((|Expression| . |PartialDifferentialSpace|) 58825) ((|Expression| . |PartialDifferentialDomain|) 58785) ((|Expression| . |PartialDifferentialRing|) 58747) ((|Expression| . |Group|) 58723) ((|Expression| . |FullyRetractableTo|) 58707) ((|Expression| . |PatternMatchable|) 58588) ((|Expression| . |FullyPatternMatchable|) 58572) ((|Expression| . |LinearlyExplicitRingOver|) 58444) ((|Expression| . |LeftModule|) 58048) ((|Expression| . |FullyLinearlyExplicitRingOver|) 58016) ((|Expression| . |DivisionRing|) 57983) ((|Expression| . |BiModule|) 57831) ((|Expression| . |RightLinearSet|) 57693) ((|Expression| . |RightModule|) 57555) ((|Expression| . |EntireRing|) 57522) ((|Expression| . |Module|) 57384) ((|Expression| . |LinearSet|) 57246) ((|Expression| . |LeftLinearSet|) 56735) ((|Expression| . |Algebra|) 56597) ((|Expression| . |EuclideanDomain|) 56564) ((|Expression| . |GcdDomain|) 56531) ((|Expression| . |CommutativeRing|) 56498) ((|Expression| . |IntegralDomain|) 56465) ((|Expression| . |PrincipalIdealDomain|) 56432) ((|Expression| . |UniqueFactorizationDomain|) 56399) ((|Expression| . |Field|) 56366) ((|Expression| . |Evalable|) 56353) ((|Expression| . |InnerEvalable|) 56315) ((|Expression| . |ExpressionSpace|) T) ((|Expression| . |CharacteristicZero|) 56278) ((|Expression| . |CharacteristicNonZero|) 56238) ((|Expression| . |Ring|) 56070) ((|Expression| . |Monoid|) 55852) ((|Expression| . |SemiRing|) 55684) ((|Expression| . |SemiGroup|) 55466) ((|Expression| . |Rng|) 55298) ((|Expression| . |CancellationAbelianMonoid|) 55100) ((|Expression| . |AbelianSemiGroup|) 54868) ((|Expression| . |BasicType|) T) ((|Expression| . |Join|) T) ((|Expression| . |Type|) T) ((|Expression| . |CoercibleTo|) 54842) ((|Expression| . |SetCategory|) T) ((|Expression| . |AbelianMonoid|) 54610) ((|Expression| . |AbelianGroup|) 54412) ((|Expression| . |AlgebraicallyClosedFunctionSpace|) 54370) ((|Expression| . |RadicalCategory|) 54337) ((|Expression| . |AlgebraicallyClosedField|) 54304) ((|Expression| . |TranscendentalFunctionCategory|) 54271) ((|Expression| . |TrigonometricFunctionCategory|) 54238) ((|Expression| . |HyperbolicFunctionCategory|) 54205) ((|Expression| . |ElementaryFunctionCategory|) 54172) ((|Expression| . |ArcTrigonometricFunctionCategory|) 54139) ((|Expression| . |ArcHyperbolicFunctionCategory|) 54106) ((|Expression| . |CombinatorialOpsCategory|) 54073) ((|Expression| . |CombinatorialFunctionCategory|) 54040) ((|Expression| . |LiouvillianFunctionCategory|) 54007) ((|Expression| . |PrimitiveFunctionCategory|) 53974) ((|Expression| . |SpecialFunctionCategory|) 53941) ((|ExponentialExpansion| . |QuotientFieldCategory|) 53856) ((|ExponentialExpansion| . |StepThrough|) NIL) ((|ExponentialExpansion| . |RetractableTo|) 53720) ((|ExponentialExpansion| . |CoercibleFrom|) 53521) ((|ExponentialExpansion| . |ConvertibleTo|) NIL) ((|ExponentialExpansion| . |RealConstant|) NIL) ((|ExponentialExpansion| . |PolynomialFactorizationExplicit|) NIL) ((|ExponentialExpansion| . |Patternable|) 53436) ((|ExponentialExpansion| . |OrderedRing|) NIL) ((|ExponentialExpansion| . |OrderedCancellationAbelianMonoid|) NIL) ((|ExponentialExpansion| . |OrderedAbelianSemiGroup|) NIL) ((|ExponentialExpansion| . |OrderedType|) NIL) ((|ExponentialExpansion| . |OrderedSet|) NIL) ((|ExponentialExpansion| . |OrderedAbelianMonoid|) NIL) ((|ExponentialExpansion| . |OrderedAbelianGroup|) NIL) ((|ExponentialExpansion| . |OrderedIntegralDomain|) NIL) ((|ExponentialExpansion| . |PatternMatchable|) NIL) ((|ExponentialExpansion| . |FullyPatternMatchable|) 53351) ((|ExponentialExpansion| . |LinearlyExplicitRingOver|) 53266) ((|ExponentialExpansion| . |LeftModule|) 53138) ((|ExponentialExpansion| . |FullyLinearlyExplicitRingOver|) 53053) ((|ExponentialExpansion| . |Eltable|) 52937) ((|ExponentialExpansion| . |Evalable|) 52826) ((|ExponentialExpansion| . |InnerEvalable|) 52649) ((|ExponentialExpansion| . |Functorial|) 52564) ((|ExponentialExpansion| . |FullyEvalableOver|) 52479) ((|ExponentialExpansion| . |DivisionRing|) T) ((|ExponentialExpansion| . |BiModule|) 52335) ((|ExponentialExpansion| . |RightLinearSet|) 52207) ((|ExponentialExpansion| . |RightModule|) 52079) ((|ExponentialExpansion| . |EntireRing|) T) ((|ExponentialExpansion| . |Module|) 51951) ((|ExponentialExpansion| . |LinearSet|) 51823) ((|ExponentialExpansion| . |LeftLinearSet|) 51675) ((|ExponentialExpansion| . |Algebra|) 51547) ((|ExponentialExpansion| . |EuclideanDomain|) T) ((|ExponentialExpansion| . |GcdDomain|) T) ((|ExponentialExpansion| . |CommutativeRing|) T) ((|ExponentialExpansion| . |IntegralDomain|) T) ((|ExponentialExpansion| . |PrincipalIdealDomain|) T) ((|ExponentialExpansion| . |UniqueFactorizationDomain|) T) ((|ExponentialExpansion| . |Field|) T) ((|ExponentialExpansion| . |DifferentialRing|) NIL) ((|ExponentialExpansion| . |DifferentialDomain|) NIL) ((|ExponentialExpansion| . |DifferentialSpace|) NIL) ((|ExponentialExpansion| . |DifferentialSpaceExtension|) 51462) ((|ExponentialExpansion| . |PartialDifferentialDomain|) NIL) ((|ExponentialExpansion| . |PartialDifferentialSpace|) NIL) ((|ExponentialExpansion| . |PartialDifferentialRing|) NIL) ((|ExponentialExpansion| . |DifferentialExtension|) 51377) ((|ExponentialExpansion| . |CharacteristicZero|) 51271) ((|ExponentialExpansion| . |CharacteristicNonZero|) 51162) ((|ExponentialExpansion| . |CancellationAbelianMonoid|) T) ((|ExponentialExpansion| . |AbelianSemiGroup|) T) ((|ExponentialExpansion| . |BasicType|) T) ((|ExponentialExpansion| . |Join|) T) ((|ExponentialExpansion| . |Type|) T) ((|ExponentialExpansion| . |CoercibleTo|) 51136) ((|ExponentialExpansion| . |SetCategory|) T) ((|ExponentialExpansion| . |AbelianMonoid|) T) ((|ExponentialExpansion| . |AbelianGroup|) T) ((|ExponentialExpansion| . |Ring|) T) ((|ExponentialExpansion| . |Monoid|) T) ((|ExponentialExpansion| . |SemiRing|) T) ((|ExponentialExpansion| . |SemiGroup|) T) ((|ExponentialExpansion| . |Rng|) T) ((|ExitAst| . |SpadSyntaxCategory|) T) ((|ExitAst| . |HomotopicTo|) 51114) ((|ExitAst| . |CoercibleTo|) 51069) ((|ExitAst| . |CoercibleFrom|) 51047) ((|ExitAst| . |SetCategory|) T) ((|ExitAst| . |Type|) T) ((|ExitAst| . |Join|) T) ((|ExitAst| . |BasicType|) T) ((|ExitAst| . |AbstractSyntaxCategory|) T) ((|Exit| . |SetCategory|) T) ((|Exit| . |CoercibleTo|) 51021) ((|Exit| . |Type|) T) ((|Exit| . |Join|) T) ((|Exit| . |BasicType|) T) ((|EqTable| . |TableAggregate|) 51000) ((|EqTable| . |Dictionary|) 50942) ((|EqTable| . |BagAggregate|) 50884) ((|EqTable| . |ShallowlyMutableAggregate|) 50813) ((|EqTable| . |Collection|) 50755) ((|EqTable| . |ConvertibleTo|) NIL) ((|EqTable| . |DictionaryOperations|) 50697) ((|EqTable| . |IndexedAggregate|) 50676) ((|EqTable| . |Evalable|) 50436) ((|EqTable| . |InnerEvalable|) 50184) ((|EqTable| . |Functorial|) 50113) ((|EqTable| . |HomogeneousAggregate|) 50042) ((|EqTable| . |Eltable|) 50021) ((|EqTable| . |EltableAggregate|) 50000) ((|EqTable| . |KeyedDictionary|) 49979) ((|EqTable| . |SetCategory|) T) ((|EqTable| . |CoercibleTo|) 49953) ((|EqTable| . |BasicType|) T) ((|EqTable| . |Type|) T) ((|EqTable| . |Join|) T) ((|EqTable| . |Aggregate|) T) ((|EqTable| . |FiniteAggregate|) 49895) ((|Equation| . |Functorial|) 49879) ((|Equation| . |Join|) T) ((|Equation| . |Type|) T) ((|Equation| . |InnerEvalable|) 49818) ((|Equation| . |SetCategory|) 49515) ((|Equation| . |CoercibleTo|) 49150) ((|Equation| . |BasicType|) 48847) ((|Equation| . |AbelianSemiGroup|) 48647) ((|Equation| . |AbelianGroup|) 48481) ((|Equation| . |LeftLinearSet|) 48126) ((|Equation| . |AbelianMonoid|) 47960) ((|Equation| . |CancellationAbelianMonoid|) 47794) ((|Equation| . |SemiGroup|) 47640) ((|Equation| . |Monoid|) 47513) ((|Equation| . |Group|) 47489) ((|Equation| . |Ring|) 47409) ((|Equation| . |SemiRing|) 47329) ((|Equation| . |Rng|) 47249) ((|Equation| . |LeftModule|) 47073) ((|Equation| . |CoercibleFrom|) 46977) ((|Equation| . |BiModule|) 46879) ((|Equation| . |RightLinearSet|) 46786) ((|Equation| . |RightModule|) 46693) ((|Equation| . |Module|) 46622) ((|Equation| . |LinearSet|) 46551) ((|Equation| . |PartialDifferentialRing|) 46485) ((|Equation| . |PartialDifferentialDomain|) 46419) ((|Equation| . |PartialDifferentialSpace|) 46355) ((|Equation| . |VectorSpace|) 46322) ((|Environment| . |CoercibleTo|) 46296) ((|EuclideanModularRing| . |EuclideanDomain|) T) ((|EuclideanModularRing| . |GcdDomain|) T) ((|EuclideanModularRing| . |Algebra|) 46283) ((|EuclideanModularRing| . |CoercibleFrom|) 46250) ((|EuclideanModularRing| . |Rng|) T) ((|EuclideanModularRing| . |SemiGroup|) T) ((|EuclideanModularRing| . |SemiRing|) T) ((|EuclideanModularRing| . |Monoid|) T) ((|EuclideanModularRing| . |Ring|) T) ((|EuclideanModularRing| . |BiModule|) 46235) ((|EuclideanModularRing| . |RightLinearSet|) 46222) ((|EuclideanModularRing| . |RightModule|) 46209) ((|EuclideanModularRing| . |AbelianGroup|) T) ((|EuclideanModularRing| . |LeftLinearSet|) 46176) ((|EuclideanModularRing| . |AbelianMonoid|) T) ((|EuclideanModularRing| . |SetCategory|) T) ((|EuclideanModularRing| . |CoercibleTo|) 46137) ((|EuclideanModularRing| . |Type|) T) ((|EuclideanModularRing| . |Join|) T) ((|EuclideanModularRing| . |BasicType|) T) ((|EuclideanModularRing| . |AbelianSemiGroup|) T) ((|EuclideanModularRing| . |CancellationAbelianMonoid|) T) ((|EuclideanModularRing| . |LeftModule|) 46124) ((|EuclideanModularRing| . |LinearSet|) 46111) ((|EuclideanModularRing| . |Module|) 46098) ((|EuclideanModularRing| . |CommutativeRing|) T) ((|EuclideanModularRing| . |EntireRing|) T) ((|EuclideanModularRing| . |IntegralDomain|) T) ((|EuclideanModularRing| . |PrincipalIdealDomain|) T) ((|EuclideanModularRing| . |Eltable|) 46077) ((|Elaboration| . |CoercibleTo|) 46051) ((|ElaboratedExpression| . |CoercibleTo|) 46025) ((|ExtAlgBasis| . |OrderedSet|) T) ((|ExtAlgBasis| . |CoercibleTo|) 45999) ((|ExtAlgBasis| . |SetCategory|) T) ((|ExtAlgBasis| . |BasicType|) T) ((|ExtAlgBasis| . |Join|) T) ((|ExtAlgBasis| . |Type|) T) ((|ExtAlgBasis| . |OrderedType|) T) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialPolynomialCategory|) 45947) ((|DifferentialSparseMultivariatePolynomial| . |CoercibleFrom|) 45579) ((|DifferentialSparseMultivariatePolynomial| . |RetractableTo|) 45346) ((|DifferentialSparseMultivariatePolynomial| . |ConvertibleTo|) 44953) ((|DifferentialSparseMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 44911) ((|DifferentialSparseMultivariatePolynomial| . |FullyRetractableTo|) 44895) ((|DifferentialSparseMultivariatePolynomial| . |Algebra|) 44658) ((|DifferentialSparseMultivariatePolynomial| . |BiModule|) 44401) ((|DifferentialSparseMultivariatePolynomial| . |RightLinearSet|) 44158) ((|DifferentialSparseMultivariatePolynomial| . |RightModule|) 43915) ((|DifferentialSparseMultivariatePolynomial| . |LeftLinearSet|) 43792) ((|DifferentialSparseMultivariatePolynomial| . |LeftModule|) 43621) ((|DifferentialSparseMultivariatePolynomial| . |LinearSet|) 43384) ((|DifferentialSparseMultivariatePolynomial| . |Module|) 43147) ((|DifferentialSparseMultivariatePolynomial| . |CharacteristicNonZero|) 43107) ((|DifferentialSparseMultivariatePolynomial| . |CharacteristicZero|) 43070) ((|DifferentialSparseMultivariatePolynomial| . |CommutativeRing|) 42923) ((|DifferentialSparseMultivariatePolynomial| . |Functorial|) 42907) ((|DifferentialSparseMultivariatePolynomial| . |IntegralDomain|) 42793) ((|DifferentialSparseMultivariatePolynomial| . |EntireRing|) 42679) ((|DifferentialSparseMultivariatePolynomial| . |AbelianMonoidRing|) 42637) ((|DifferentialSparseMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 42621) ((|DifferentialSparseMultivariatePolynomial| . |LinearlyExplicitRingOver|) 42537) ((|DifferentialSparseMultivariatePolynomial| . |GcdDomain|) 42455) ((|DifferentialSparseMultivariatePolynomial| . |InnerEvalable|) 42326) ((|DifferentialSparseMultivariatePolynomial| . |PartialDifferentialRing|) 42245) ((|DifferentialSparseMultivariatePolynomial| . |PartialDifferentialDomain|) 42102) ((|DifferentialSparseMultivariatePolynomial| . |PartialDifferentialSpace|) 41963) ((|DifferentialSparseMultivariatePolynomial| . |PatternMatchable|) 41742) ((|DifferentialSparseMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 41692) ((|DifferentialSparseMultivariatePolynomial| . |UniqueFactorizationDomain|) 41642) ((|DifferentialSparseMultivariatePolynomial| . |PolynomialCategory|) 41595) ((|DifferentialSparseMultivariatePolynomial| . |Evalable|) 41582) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialRing|) 41547) ((|DifferentialSparseMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|DifferentialSparseMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|DifferentialSparseMultivariatePolynomial| . |BasicType|) T) ((|DifferentialSparseMultivariatePolynomial| . |CoercibleTo|) 41521) ((|DifferentialSparseMultivariatePolynomial| . |SetCategory|) T) ((|DifferentialSparseMultivariatePolynomial| . |AbelianMonoid|) T) ((|DifferentialSparseMultivariatePolynomial| . |AbelianGroup|) T) ((|DifferentialSparseMultivariatePolynomial| . |Rng|) T) ((|DifferentialSparseMultivariatePolynomial| . |SemiGroup|) T) ((|DifferentialSparseMultivariatePolynomial| . |SemiRing|) T) ((|DifferentialSparseMultivariatePolynomial| . |Monoid|) T) ((|DifferentialSparseMultivariatePolynomial| . |Ring|) T) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialDomain|) 41440) ((|DifferentialSparseMultivariatePolynomial| . |Join|) T) ((|DifferentialSparseMultivariatePolynomial| . |Type|) T) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialSpace|) 41365) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialSpaceExtension|) 41349) ((|DifferentialSparseMultivariatePolynomial| . |DifferentialExtension|) 41333) ((|DrawOption| . |SetCategory|) T) ((|DrawOption| . |CoercibleTo|) 41307) ((|DrawOption| . |Type|) T) ((|DrawOption| . |Join|) T) ((|DrawOption| . |BasicType|) T) ((|DirectProductModule| . |DirectProductCategory|) 41286) ((|DirectProductModule| . |VectorSpace|) 41253) ((|DirectProductModule| . |OrderedCancellationAbelianMonoid|) 41211) ((|DirectProductModule| . |OrderedAbelianSemiGroup|) 41169) ((|DirectProductModule| . |OrderedType|) 41094) ((|DirectProductModule| . |OrderedSet|) 41019) ((|DirectProductModule| . |OrderedAbelianMonoid|) 40977) ((|DirectProductModule| . |OrderedAbelianMonoidSup|) 40935) ((|DirectProductModule| . |Module|) 40864) ((|DirectProductModule| . |LinearSet|) 40769) ((|DirectProductModule| . |EltableAggregate|) 40741) ((|DirectProductModule| . |Eltable|) 40713) ((|DirectProductModule| . |IndexedAggregate|) 40685) ((|DirectProductModule| . |RetractableTo|) 40436) ((|DirectProductModule| . |CoercibleFrom|) 40160) ((|DirectProductModule| . |FullyRetractableTo|) 40121) ((|DirectProductModule| . |LinearlyExplicitRingOver|) 39993) ((|DirectProductModule| . |LeftModule|) 39765) ((|DirectProductModule| . |FullyLinearlyExplicitRingOver|) 39733) ((|DirectProductModule| . |HomogeneousAggregate|) 39717) ((|DirectProductModule| . |Functorial|) 39701) ((|DirectProductModule| . |InnerEvalable|) 39620) ((|DirectProductModule| . |Evalable|) 39544) ((|DirectProductModule| . |Aggregate|) T) ((|DirectProductModule| . |FiniteAggregate|) 39528) ((|DirectProductModule| . |Finite|) 39503) ((|DirectProductModule| . |DifferentialRing|) 39440) ((|DirectProductModule| . |LeftLinearSet|) 39264) ((|DirectProductModule| . |Rng|) 39241) ((|DirectProductModule| . |SemiGroup|) 39218) ((|DirectProductModule| . |SemiRing|) 39195) ((|DirectProductModule| . |Monoid|) 39172) ((|DirectProductModule| . |Ring|) 39149) ((|DirectProductModule| . |DifferentialDomain|) 39012) ((|DirectProductModule| . |DifferentialSpace|) 38881) ((|DirectProductModule| . |DifferentialSpaceExtension|) 38849) ((|DirectProductModule| . |PartialDifferentialDomain|) 38665) ((|DirectProductModule| . |PartialDifferentialSpace|) 38483) ((|DirectProductModule| . |PartialDifferentialRing|) 38387) ((|DirectProductModule| . |DifferentialExtension|) 38355) ((|DirectProductModule| . |CoercibleTo|) 38305) ((|DirectProductModule| . |RightModule|) 38212) ((|DirectProductModule| . |RightLinearSet|) 38095) ((|DirectProductModule| . |BiModule|) 37997) ((|DirectProductModule| . |CancellationAbelianMonoid|) T) ((|DirectProductModule| . |AbelianSemiGroup|) T) ((|DirectProductModule| . |BasicType|) T) ((|DirectProductModule| . |Join|) T) ((|DirectProductModule| . |Type|) T) ((|DirectProductModule| . |SetCategory|) T) ((|DirectProductModule| . |AbelianMonoid|) T) ((|DirectProductModule| . |AbelianGroup|) T) ((|DirectProductMatrixModule| . |DirectProductCategory|) 37976) ((|DirectProductMatrixModule| . |VectorSpace|) 37943) ((|DirectProductMatrixModule| . |OrderedCancellationAbelianMonoid|) 37901) ((|DirectProductMatrixModule| . |OrderedAbelianSemiGroup|) 37859) ((|DirectProductMatrixModule| . |OrderedType|) 37784) ((|DirectProductMatrixModule| . |OrderedSet|) 37709) ((|DirectProductMatrixModule| . |OrderedAbelianMonoid|) 37667) ((|DirectProductMatrixModule| . |OrderedAbelianMonoidSup|) 37625) ((|DirectProductMatrixModule| . |Module|) 37554) ((|DirectProductMatrixModule| . |LinearSet|) 37459) ((|DirectProductMatrixModule| . |EltableAggregate|) 37431) ((|DirectProductMatrixModule| . |Eltable|) 37403) ((|DirectProductMatrixModule| . |IndexedAggregate|) 37375) ((|DirectProductMatrixModule| . |RetractableTo|) 37126) ((|DirectProductMatrixModule| . |CoercibleFrom|) 36850) ((|DirectProductMatrixModule| . |FullyRetractableTo|) 36811) ((|DirectProductMatrixModule| . |LinearlyExplicitRingOver|) 36683) ((|DirectProductMatrixModule| . |LeftModule|) 36442) ((|DirectProductMatrixModule| . |FullyLinearlyExplicitRingOver|) 36410) ((|DirectProductMatrixModule| . |HomogeneousAggregate|) 36394) ((|DirectProductMatrixModule| . |Functorial|) 36378) ((|DirectProductMatrixModule| . |InnerEvalable|) 36297) ((|DirectProductMatrixModule| . |Evalable|) 36221) ((|DirectProductMatrixModule| . |Aggregate|) T) ((|DirectProductMatrixModule| . |FiniteAggregate|) 36205) ((|DirectProductMatrixModule| . |Finite|) 36180) ((|DirectProductMatrixModule| . |DifferentialRing|) 36117) ((|DirectProductMatrixModule| . |LeftLinearSet|) 35928) ((|DirectProductMatrixModule| . |Rng|) 35905) ((|DirectProductMatrixModule| . |SemiGroup|) 35882) ((|DirectProductMatrixModule| . |SemiRing|) 35859) ((|DirectProductMatrixModule| . |Monoid|) 35836) ((|DirectProductMatrixModule| . |Ring|) 35813) ((|DirectProductMatrixModule| . |DifferentialDomain|) 35676) ((|DirectProductMatrixModule| . |DifferentialSpace|) 35545) ((|DirectProductMatrixModule| . |DifferentialSpaceExtension|) 35513) ((|DirectProductMatrixModule| . |PartialDifferentialDomain|) 35329) ((|DirectProductMatrixModule| . |PartialDifferentialSpace|) 35147) ((|DirectProductMatrixModule| . |PartialDifferentialRing|) 35051) ((|DirectProductMatrixModule| . |DifferentialExtension|) 35019) ((|DirectProductMatrixModule| . |CoercibleTo|) 34969) ((|DirectProductMatrixModule| . |RightModule|) 34876) ((|DirectProductMatrixModule| . |RightLinearSet|) 34759) ((|DirectProductMatrixModule| . |BiModule|) 34661) ((|DirectProductMatrixModule| . |CancellationAbelianMonoid|) T) ((|DirectProductMatrixModule| . |AbelianSemiGroup|) T) ((|DirectProductMatrixModule| . |BasicType|) T) ((|DirectProductMatrixModule| . |Join|) T) ((|DirectProductMatrixModule| . |Type|) T) ((|DirectProductMatrixModule| . |SetCategory|) T) ((|DirectProductMatrixModule| . |AbelianMonoid|) T) ((|DirectProductMatrixModule| . |AbelianGroup|) T) ((|DomainTemplate| . |SetCategory|) T) ((|DomainTemplate| . |CoercibleTo|) 34635) ((|DomainTemplate| . |Type|) T) ((|DomainTemplate| . |Join|) T) ((|DomainTemplate| . |BasicType|) T) ((|DomainTemplate| . |Eltable|) 34590) ((|DomainConstructor| . |ConstructorCategory|) T) ((|DomainConstructor| . |SetCategory|) T) ((|DomainConstructor| . |CoercibleTo|) 34540) ((|DomainConstructor| . |Type|) T) ((|DomainConstructor| . |Join|) T) ((|DomainConstructor| . |BasicType|) T) ((|DomainConstructor| . |OperatorCategory|) 34514) ((|Domain| . |SetCategory|) T) ((|Domain| . |CoercibleTo|) 34488) ((|Domain| . |Type|) T) ((|Domain| . |Join|) T) ((|Domain| . |BasicType|) T) ((|DistributedMultivariatePolynomial| . |PolynomialCategory|) 34391) ((|DistributedMultivariatePolynomial| . |CoercibleFrom|) 34063) ((|DistributedMultivariatePolynomial| . |RetractableTo|) 33870) ((|DistributedMultivariatePolynomial| . |UniqueFactorizationDomain|) 33820) ((|DistributedMultivariatePolynomial| . |PolynomialFactorizationExplicit|) 33770) ((|DistributedMultivariatePolynomial| . |PatternMatchable|) NIL) ((|DistributedMultivariatePolynomial| . |PartialDifferentialSpace|) 33730) ((|DistributedMultivariatePolynomial| . |PartialDifferentialDomain|) 33688) ((|DistributedMultivariatePolynomial| . |PartialDifferentialRing|) 33648) ((|DistributedMultivariatePolynomial| . |InnerEvalable|) 33574) ((|DistributedMultivariatePolynomial| . |GcdDomain|) 33492) ((|DistributedMultivariatePolynomial| . |LinearlyExplicitRingOver|) 33408) ((|DistributedMultivariatePolynomial| . |LeftModule|) 33237) ((|DistributedMultivariatePolynomial| . |FullyLinearlyExplicitRingOver|) 33221) ((|DistributedMultivariatePolynomial| . |AbelianMonoidRing|) 33153) ((|DistributedMultivariatePolynomial| . |Algebra|) 32916) ((|DistributedMultivariatePolynomial| . |LinearSet|) 32679) ((|DistributedMultivariatePolynomial| . |Module|) 32442) ((|DistributedMultivariatePolynomial| . |EntireRing|) 32328) ((|DistributedMultivariatePolynomial| . |IntegralDomain|) 32214) ((|DistributedMultivariatePolynomial| . |Functorial|) 32198) ((|DistributedMultivariatePolynomial| . |BiModule|) 31941) ((|DistributedMultivariatePolynomial| . |RightLinearSet|) 31698) ((|DistributedMultivariatePolynomial| . |RightModule|) 31455) ((|DistributedMultivariatePolynomial| . |CommutativeRing|) 31308) ((|DistributedMultivariatePolynomial| . |CharacteristicZero|) 31271) ((|DistributedMultivariatePolynomial| . |CharacteristicNonZero|) 31231) ((|DistributedMultivariatePolynomial| . |LeftLinearSet|) 31108) ((|DistributedMultivariatePolynomial| . |CancellationAbelianMonoid|) T) ((|DistributedMultivariatePolynomial| . |AbelianSemiGroup|) T) ((|DistributedMultivariatePolynomial| . |BasicType|) T) ((|DistributedMultivariatePolynomial| . |Join|) T) ((|DistributedMultivariatePolynomial| . |Type|) T) ((|DistributedMultivariatePolynomial| . |CoercibleTo|) 31082) ((|DistributedMultivariatePolynomial| . |SetCategory|) T) ((|DistributedMultivariatePolynomial| . |AbelianMonoid|) T) ((|DistributedMultivariatePolynomial| . |AbelianGroup|) T) ((|DistributedMultivariatePolynomial| . |Ring|) T) ((|DistributedMultivariatePolynomial| . |Monoid|) T) ((|DistributedMultivariatePolynomial| . |SemiRing|) T) ((|DistributedMultivariatePolynomial| . |SemiGroup|) T) ((|DistributedMultivariatePolynomial| . |Rng|) T) ((|DistributedMultivariatePolynomial| . |FullyRetractableTo|) 31066) ((|DistributedMultivariatePolynomial| . |FiniteAbelianMonoidRing|) 30998) ((|DistributedMultivariatePolynomial| . |Evalable|) 30985) ((|DistributedMultivariatePolynomial| . |ConvertibleTo|) 30763) ((|DataList| . |ListAggregate|) 30747) ((|DataList| . |UnaryRecursiveAggregate|) 30731) ((|DataList| . |RecursiveAggregate|) 30715) ((|DataList| . |StreamAggregate|) 30699) ((|DataList| . |FiniteAggregate|) 30683) ((|DataList| . |OrderedSet|) 30654) ((|DataList| . |OrderedType|) 30625) ((|DataList| . |FiniteLinearAggregate|) 30609) ((|DataList| . |LinearAggregate|) 30593) ((|DataList| . |EltableAggregate|) 30565) ((|DataList| . |Eltable|) 30494) ((|DataList| . |IndexedAggregate|) 30466) ((|DataList| . |ConvertibleTo|) 30402) ((|DataList| . |HomogeneousAggregate|) 30386) ((|DataList| . |SetCategory|) 30323) ((|DataList| . |Functorial|) 30307) ((|DataList| . |InnerEvalable|) 30226) ((|DataList| . |Evalable|) 30150) ((|DataList| . |CoercibleTo|) 30002) ((|DataList| . |BasicType|) 29912) ((|DataList| . |Type|) T) ((|DataList| . |Join|) T) ((|DataList| . |Aggregate|) T) ((|DataList| . |Collection|) 29896) ((|DataList| . |ShallowlyMutableAggregate|) 29880) ((|DataList| . |ExtensibleLinearAggregate|) 29864) ((|DataList| . |HomotopicTo|) 29839) ((|DataList| . |CoercibleFrom|) 29814) ((|DirectProduct| . |DirectProductCategory|) 29793) ((|DirectProduct| . |VectorSpace|) 29760) ((|DirectProduct| . |OrderedCancellationAbelianMonoid|) 29718) ((|DirectProduct| . |OrderedAbelianSemiGroup|) 29676) ((|DirectProduct| . |OrderedType|) 29601) ((|DirectProduct| . |OrderedSet|) 29526) ((|DirectProduct| . |OrderedAbelianMonoid|) 29484) ((|DirectProduct| . |OrderedAbelianMonoidSup|) 29442) ((|DirectProduct| . |Module|) 29371) ((|DirectProduct| . |LinearSet|) 29276) ((|DirectProduct| . |EltableAggregate|) 29248) ((|DirectProduct| . |Eltable|) 29220) ((|DirectProduct| . |IndexedAggregate|) 29192) ((|DirectProduct| . |RetractableTo|) 28943) ((|DirectProduct| . |CoercibleFrom|) 28667) ((|DirectProduct| . |FullyRetractableTo|) 28628) ((|DirectProduct| . |LinearlyExplicitRingOver|) 28500) ((|DirectProduct| . |LeftModule|) 28285) ((|DirectProduct| . |FullyLinearlyExplicitRingOver|) 28253) ((|DirectProduct| . |HomogeneousAggregate|) 28237) ((|DirectProduct| . |Functorial|) 28221) ((|DirectProduct| . |InnerEvalable|) 28140) ((|DirectProduct| . |Evalable|) 28064) ((|DirectProduct| . |Aggregate|) T) ((|DirectProduct| . |FiniteAggregate|) 28048) ((|DirectProduct| . |Finite|) 28023) ((|DirectProduct| . |DifferentialRing|) 27960) ((|DirectProduct| . |LeftLinearSet|) 27690) ((|DirectProduct| . |Rng|) 27667) ((|DirectProduct| . |SemiGroup|) 27644) ((|DirectProduct| . |SemiRing|) 27621) ((|DirectProduct| . |Monoid|) 27598) ((|DirectProduct| . |Ring|) 27575) ((|DirectProduct| . |DifferentialDomain|) 27438) ((|DirectProduct| . |DifferentialSpace|) 27307) ((|DirectProduct| . |DifferentialSpaceExtension|) 27275) ((|DirectProduct| . |PartialDifferentialDomain|) 27091) ((|DirectProduct| . |PartialDifferentialSpace|) 26909) ((|DirectProduct| . |PartialDifferentialRing|) 26813) ((|DirectProduct| . |DifferentialExtension|) 26781) ((|DirectProduct| . |CoercibleTo|) 26326) ((|DirectProduct| . |RightModule|) 26233) ((|DirectProduct| . |RightLinearSet|) 26116) ((|DirectProduct| . |BiModule|) 26018) ((|DirectProduct| . |CancellationAbelianMonoid|) 25820) ((|DirectProduct| . |AbelianSemiGroup|) 25557) ((|DirectProduct| . |BasicType|) 25162) ((|DirectProduct| . |Join|) T) ((|DirectProduct| . |Type|) T) ((|DirectProduct| . |SetCategory|) 24794) ((|DirectProduct| . |AbelianMonoid|) 24565) ((|DirectProduct| . |AbelianGroup|) 24451) ((|DenavitHartenbergMatrix| . |MatrixCategory|) 24412) ((|DenavitHartenbergMatrix| . |FiniteAggregate|) 24396) ((|DenavitHartenbergMatrix| . |Aggregate|) T) ((|DenavitHartenbergMatrix| . |Join|) T) ((|DenavitHartenbergMatrix| . |Type|) T) ((|DenavitHartenbergMatrix| . |BasicType|) 24334) ((|DenavitHartenbergMatrix| . |CoercibleTo|) 24236) ((|DenavitHartenbergMatrix| . |Evalable|) 24160) ((|DenavitHartenbergMatrix| . |InnerEvalable|) 24079) ((|DenavitHartenbergMatrix| . |Functorial|) 24063) ((|DenavitHartenbergMatrix| . |SetCategory|) 24033) ((|DenavitHartenbergMatrix| . |HomogeneousAggregate|) 24017) ((|DenavitHartenbergMatrix| . |ShallowlyMutableAggregate|) 24001) ((|DenavitHartenbergMatrix| . |TwoDimensionalArrayCategory|) 23962) ((|DoubleFloat| . |FloatingPointSystem|) T) ((|DoubleFloat| . |CharacteristicZero|) T) ((|DoubleFloat| . |CoercibleFrom|) 23896) ((|DoubleFloat| . |LeftModule|) 23850) ((|DoubleFloat| . |LeftLinearSet|) 23784) ((|DoubleFloat| . |CancellationAbelianMonoid|) T) ((|DoubleFloat| . |AbelianSemiGroup|) T) ((|DoubleFloat| . |BasicType|) T) ((|DoubleFloat| . |Join|) T) ((|DoubleFloat| . |Type|) T) ((|DoubleFloat| . |CoercibleTo|) 23758) ((|DoubleFloat| . |SetCategory|) T) ((|DoubleFloat| . |AbelianMonoid|) T) ((|DoubleFloat| . |AbelianGroup|) T) ((|DoubleFloat| . |Rng|) T) ((|DoubleFloat| . |SemiGroup|) T) ((|DoubleFloat| . |SemiRing|) T) ((|DoubleFloat| . |Monoid|) T) ((|DoubleFloat| . |Ring|) T) ((|DoubleFloat| . |ConvertibleTo|) 23661) ((|DoubleFloat| . |Field|) T) ((|DoubleFloat| . |UniqueFactorizationDomain|) T) ((|DoubleFloat| . |PrincipalIdealDomain|) T) ((|DoubleFloat| . |IntegralDomain|) T) ((|DoubleFloat| . |CommutativeRing|) T) ((|DoubleFloat| . |Module|) 23615) ((|DoubleFloat| . |LinearSet|) 23569) ((|DoubleFloat| . |Algebra|) 23523) ((|DoubleFloat| . |GcdDomain|) T) ((|DoubleFloat| . |EuclideanDomain|) T) ((|DoubleFloat| . |BiModule|) 23468) ((|DoubleFloat| . |RightLinearSet|) 23422) ((|DoubleFloat| . |RightModule|) 23376) ((|DoubleFloat| . |EntireRing|) T) ((|DoubleFloat| . |DivisionRing|) T) ((|DoubleFloat| . |OrderedRing|) T) ((|DoubleFloat| . |OrderedCancellationAbelianMonoid|) T) ((|DoubleFloat| . |OrderedAbelianSemiGroup|) T) ((|DoubleFloat| . |OrderedType|) T) ((|DoubleFloat| . |OrderedSet|) T) ((|DoubleFloat| . |OrderedAbelianMonoid|) T) ((|DoubleFloat| . |OrderedAbelianGroup|) T) ((|DoubleFloat| . |PatternMatchable|) 23355) ((|DoubleFloat| . |RadicalCategory|) T) ((|DoubleFloat| . |RealConstant|) T) ((|DoubleFloat| . |RetractableTo|) 23304) ((|DoubleFloat| . |RealNumberSystem|) T) ((|DoubleFloat| . |DifferentialRing|) T) ((|DoubleFloat| . |DifferentialDomain|) 23291) ((|DoubleFloat| . |DifferentialSpace|) T) ((|DoubleFloat| . |TranscendentalFunctionCategory|) T) ((|DoubleFloat| . |TrigonometricFunctionCategory|) T) ((|DoubleFloat| . |HyperbolicFunctionCategory|) T) ((|DoubleFloat| . |ElementaryFunctionCategory|) T) ((|DoubleFloat| . |ArcTrigonometricFunctionCategory|) T) ((|DoubleFloat| . |ArcHyperbolicFunctionCategory|) T) ((|DeRhamComplex| . |LeftAlgebra|) 23260) ((|DeRhamComplex| . |CoercibleFrom|) 23209) ((|DeRhamComplex| . |LeftModule|) 23168) ((|DeRhamComplex| . |LeftLinearSet|) 23107) ((|DeRhamComplex| . |Rng|) T) ((|DeRhamComplex| . |SemiGroup|) T) ((|DeRhamComplex| . |SemiRing|) T) ((|DeRhamComplex| . |Monoid|) T) ((|DeRhamComplex| . |Ring|) T) ((|DeRhamComplex| . |AbelianGroup|) T) ((|DeRhamComplex| . |AbelianMonoid|) T) ((|DeRhamComplex| . |SetCategory|) T) ((|DeRhamComplex| . |CoercibleTo|) 23081) ((|DeRhamComplex| . |Type|) T) ((|DeRhamComplex| . |Join|) T) ((|DeRhamComplex| . |BasicType|) T) ((|DeRhamComplex| . |AbelianSemiGroup|) T) ((|DeRhamComplex| . |CancellationAbelianMonoid|) T) ((|DeRhamComplex| . |RetractableTo|) 23050) ((|DeRhamComplex| . |Functorial|) 23019) ((|Dequeue| . |DequeueAggregate|) 23003) ((|Dequeue| . |StackAggregate|) 22987) ((|Dequeue| . |BagAggregate|) 22971) ((|Dequeue| . |ShallowlyMutableAggregate|) 22955) ((|Dequeue| . |Aggregate|) T) ((|Dequeue| . |Join|) T) ((|Dequeue| . |Type|) T) ((|Dequeue| . |BasicType|) 22893) ((|Dequeue| . |CoercibleTo|) 22795) ((|Dequeue| . |Evalable|) 22719) ((|Dequeue| . |InnerEvalable|) 22638) ((|Dequeue| . |Functorial|) 22622) ((|Dequeue| . |SetCategory|) 22592) ((|Dequeue| . |HomogeneousAggregate|) 22576) ((|Dequeue| . |FiniteAggregate|) 22560) ((|Dequeue| . |QueueAggregate|) 22544) ((|DefinitionAst| . |SpadSyntaxCategory|) T) ((|DefinitionAst| . |HomotopicTo|) 22522) ((|DefinitionAst| . |CoercibleTo|) 22477) ((|DefinitionAst| . |CoercibleFrom|) 22455) ((|DefinitionAst| . |SetCategory|) T) ((|DefinitionAst| . |Type|) T) ((|DefinitionAst| . |Join|) T) ((|DefinitionAst| . |BasicType|) T) ((|DefinitionAst| . |AbstractSyntaxCategory|) T) ((|DecimalExpansion| . |QuotientFieldCategory|) 22432) ((|DecimalExpansion| . |StepThrough|) T) ((|DecimalExpansion| . |CoercibleFrom|) 22366) ((|DecimalExpansion| . |RetractableTo|) 22310) ((|DecimalExpansion| . |ConvertibleTo|) 22211) ((|DecimalExpansion| . |RealConstant|) T) ((|DecimalExpansion| . |PolynomialFactorizationExplicit|) NIL) ((|DecimalExpansion| . |Patternable|) 22188) ((|DecimalExpansion| . |OrderedRing|) T) ((|DecimalExpansion| . |OrderedCancellationAbelianMonoid|) T) ((|DecimalExpansion| . |OrderedAbelianSemiGroup|) T) ((|DecimalExpansion| . |OrderedType|) T) ((|DecimalExpansion| . |OrderedSet|) T) ((|DecimalExpansion| . |OrderedAbelianMonoid|) T) ((|DecimalExpansion| . |OrderedAbelianGroup|) T) ((|DecimalExpansion| . |OrderedIntegralDomain|) T) ((|DecimalExpansion| . |PatternMatchable|) 22165) ((|DecimalExpansion| . |FullyPatternMatchable|) 22142) ((|DecimalExpansion| . |LinearlyExplicitRingOver|) 22119) ((|DecimalExpansion| . |FullyLinearlyExplicitRingOver|) 22096) ((|DecimalExpansion| . |Eltable|) NIL) ((|DecimalExpansion| . |Evalable|) NIL) ((|DecimalExpansion| . |InnerEvalable|) NIL) ((|DecimalExpansion| . |Functorial|) 22073) ((|DecimalExpansion| . |FullyEvalableOver|) 22050) ((|DecimalExpansion| . |DivisionRing|) T) ((|DecimalExpansion| . |BiModule|) 21968) ((|DecimalExpansion| . |RightLinearSet|) 21902) ((|DecimalExpansion| . |RightModule|) 21836) ((|DecimalExpansion| . |EntireRing|) T) ((|DecimalExpansion| . |Module|) 21770) ((|DecimalExpansion| . |LinearSet|) 21704) ((|DecimalExpansion| . |LeftModule|) 21638) ((|DecimalExpansion| . |LeftLinearSet|) 21572) ((|DecimalExpansion| . |Algebra|) 21506) ((|DecimalExpansion| . |EuclideanDomain|) T) ((|DecimalExpansion| . |GcdDomain|) T) ((|DecimalExpansion| . |CommutativeRing|) T) ((|DecimalExpansion| . |IntegralDomain|) T) ((|DecimalExpansion| . |PrincipalIdealDomain|) T) ((|DecimalExpansion| . |UniqueFactorizationDomain|) T) ((|DecimalExpansion| . |Field|) T) ((|DecimalExpansion| . |DifferentialRing|) T) ((|DecimalExpansion| . |DifferentialDomain|) 21493) ((|DecimalExpansion| . |DifferentialSpace|) T) ((|DecimalExpansion| . |DifferentialSpaceExtension|) 21470) ((|DecimalExpansion| . |PartialDifferentialDomain|) NIL) ((|DecimalExpansion| . |PartialDifferentialSpace|) NIL) ((|DecimalExpansion| . |PartialDifferentialRing|) NIL) ((|DecimalExpansion| . |DifferentialExtension|) 21447) ((|DecimalExpansion| . |CharacteristicZero|) T) ((|DecimalExpansion| . |CharacteristicNonZero|) NIL) ((|DecimalExpansion| . |CancellationAbelianMonoid|) T) ((|DecimalExpansion| . |AbelianSemiGroup|) T) ((|DecimalExpansion| . |BasicType|) T) ((|DecimalExpansion| . |Join|) T) ((|DecimalExpansion| . |Type|) T) ((|DecimalExpansion| . |CoercibleTo|) 21358) ((|DecimalExpansion| . |SetCategory|) T) ((|DecimalExpansion| . |AbelianMonoid|) T) ((|DecimalExpansion| . |AbelianGroup|) T) ((|DecimalExpansion| . |Ring|) T) ((|DecimalExpansion| . |Monoid|) T) ((|DecimalExpansion| . |SemiRing|) T) ((|DecimalExpansion| . |SemiGroup|) T) ((|DecimalExpansion| . |Rng|) T) ((|DualBasis| . |OrderedFinite|) T) ((|DualBasis| . |OrderedType|) T) ((|DualBasis| . |OrderedSet|) T) ((|DualBasis| . |SetCategory|) T) ((|DualBasis| . |CoercibleTo|) 21332) ((|DualBasis| . |Type|) T) ((|DualBasis| . |Join|) T) ((|DualBasis| . |BasicType|) T) ((|DualBasis| . |Finite|) T) ((|Database| . |SetCategory|) T) ((|Database| . |CoercibleTo|) 21306) ((|Database| . |Type|) T) ((|Database| . |Join|) T) ((|Database| . |BasicType|) T) ((|Database| . |CoercibleFrom|) 21281) ((|DataArray| . |SetCategory|) T) ((|DataArray| . |CoercibleTo|) 21255) ((|DataArray| . |Type|) T) ((|DataArray| . |Join|) T) ((|DataArray| . |BasicType|) T) ((|ConstructorKind| . |SetCategory|) T) ((|ConstructorKind| . |CoercibleTo|) 21229) ((|ConstructorKind| . |Type|) T) ((|ConstructorKind| . |Join|) T) ((|ConstructorKind| . |BasicType|) T) ((|ConstructorCall| . |SetCategory|) T) ((|ConstructorCall| . |CoercibleTo|) 21203) ((|ConstructorCall| . |Type|) T) ((|ConstructorCall| . |Join|) T) ((|ConstructorCall| . |BasicType|) T) ((|Constructor| . |ConstructorCategory|) T) ((|Constructor| . |SetCategory|) T) ((|Constructor| . |CoercibleTo|) 21177) ((|Constructor| . |Type|) T) ((|Constructor| . |Join|) T) ((|Constructor| . |BasicType|) T) ((|Constructor| . |OperatorCategory|) 21151) ((|CoerceAst| . |SpadSyntaxCategory|) T) ((|CoerceAst| . |HomotopicTo|) 21129) ((|CoerceAst| . |CoercibleTo|) 21084) ((|CoerceAst| . |CoercibleFrom|) 21062) ((|CoerceAst| . |SetCategory|) T) ((|CoerceAst| . |Type|) T) ((|CoerceAst| . |Join|) T) ((|CoerceAst| . |BasicType|) T) ((|CoerceAst| . |AbstractSyntaxCategory|) T) ((|Contour| . |CoercibleTo|) 21036) ((|ContinuedFraction| . |Algebra|) 20951) ((|ContinuedFraction| . |CoercibleFrom|) 20846) ((|ContinuedFraction| . |LeftModule|) 20761) ((|ContinuedFraction| . |LeftLinearSet|) 20656) ((|ContinuedFraction| . |Rng|) T) ((|ContinuedFraction| . |SemiGroup|) T) ((|ContinuedFraction| . |SemiRing|) T) ((|ContinuedFraction| . |Monoid|) T) ((|ContinuedFraction| . |Ring|) T) ((|ContinuedFraction| . |BiModule|) 20550) ((|ContinuedFraction| . |RightLinearSet|) 20465) ((|ContinuedFraction| . |RightModule|) 20380) ((|ContinuedFraction| . |AbelianGroup|) T) ((|ContinuedFraction| . |AbelianMonoid|) T) ((|ContinuedFraction| . |SetCategory|) T) ((|ContinuedFraction| . |CoercibleTo|) 20354) ((|ContinuedFraction| . |Type|) T) ((|ContinuedFraction| . |Join|) T) ((|ContinuedFraction| . |BasicType|) T) ((|ContinuedFraction| . |AbelianSemiGroup|) T) ((|ContinuedFraction| . |CancellationAbelianMonoid|) T) ((|ContinuedFraction| . |LinearSet|) 20269) ((|ContinuedFraction| . |Module|) 20184) ((|ContinuedFraction| . |Field|) T) ((|ContinuedFraction| . |UniqueFactorizationDomain|) T) ((|ContinuedFraction| . |PrincipalIdealDomain|) T) ((|ContinuedFraction| . |IntegralDomain|) T) ((|ContinuedFraction| . |CommutativeRing|) T) ((|ContinuedFraction| . |GcdDomain|) T) ((|ContinuedFraction| . |EuclideanDomain|) T) ((|ContinuedFraction| . |EntireRing|) T) ((|ContinuedFraction| . |DivisionRing|) T) ((|SubSpaceComponentProperty| . |SetCategory|) T) ((|SubSpaceComponentProperty| . |CoercibleTo|) 20158) ((|SubSpaceComponentProperty| . |Type|) T) ((|SubSpaceComponentProperty| . |Join|) T) ((|SubSpaceComponentProperty| . |BasicType|) T) ((|Complex| . |ComplexCategory|) 20142) ((|Complex| . |ArcHyperbolicFunctionCategory|) 20093) ((|Complex| . |ArcTrigonometricFunctionCategory|) 20044) ((|Complex| . |ElementaryFunctionCategory|) 19995) ((|Complex| . |HyperbolicFunctionCategory|) 19946) ((|Complex| . |TrigonometricFunctionCategory|) 19897) ((|Complex| . |TranscendentalFunctionCategory|) 19848) ((|Complex| . |RadicalCategory|) 19760) ((|Complex| . |PolynomialFactorizationExplicit|) 19671) ((|Complex| . |ConvertibleTo|) 19295) ((|Complex| . |Patternable|) 19279) ((|Complex| . |Finite|) 19212) ((|Complex| . |FiniteFieldCategory|) 19174) ((|Complex| . |StepThrough|) 19136) ((|Complex| . |FieldOfPrimeCharacteristic|) 19098) ((|Complex| . |FramedAlgebra|) 19046) ((|Complex| . |Algebra|) 18804) ((|Complex| . |BiModule|) 18672) ((|Complex| . |RightLinearSet|) 18554) ((|Complex| . |RightModule|) 18436) ((|Complex| . |LinearSet|) 18194) ((|Complex| . |Module|) 17952) ((|Complex| . |FiniteRankAlgebra|) 17900) ((|Complex| . |MonogenicAlgebra|) 17848) ((|Complex| . |RetractableTo|) 17692) ((|Complex| . |CoercibleFrom|) 17374) ((|Complex| . |FullyRetractableTo|) 17358) ((|Complex| . |PatternMatchable|) 17239) ((|Complex| . |FullyPatternMatchable|) 17223) ((|Complex| . |LinearlyExplicitRingOver|) 17139) ((|Complex| . |LeftModule|) 16953) ((|Complex| . |LeftLinearSet|) 16815) ((|Complex| . |FullyLinearlyExplicitRingOver|) 16799) ((|Complex| . |Eltable|) 16752) ((|Complex| . |Evalable|) 16711) ((|Complex| . |InnerEvalable|) 16600) ((|Complex| . |Functorial|) 16584) ((|Complex| . |FullyEvalableOver|) 16568) ((|Complex| . |DivisionRing|) 16502) ((|Complex| . |UniqueFactorizationDomain|) 16348) ((|Complex| . |Field|) 16282) ((|Complex| . |PrincipalIdealDomain|) 16183) ((|Complex| . |IntegralDomain|) 16052) ((|Complex| . |EntireRing|) 15921) ((|Complex| . |GcdDomain|) 15822) ((|Complex| . |EuclideanDomain|) 15723) ((|Complex| . |DifferentialRing|) 15646) ((|Complex| . |DifferentialDomain|) 15528) ((|Complex| . |DifferentialSpace|) 15416) ((|Complex| . |DifferentialSpaceExtension|) 15400) ((|Complex| . |PartialDifferentialDomain|) 15272) ((|Complex| . |PartialDifferentialSpace|) 15146) ((|Complex| . |PartialDifferentialRing|) 15078) ((|Complex| . |DifferentialExtension|) 15062) ((|Complex| . |CommutativeRing|) T) ((|Complex| . |CharacteristicZero|) 15025) ((|Complex| . |Ring|) T) ((|Complex| . |Monoid|) T) ((|Complex| . |SemiRing|) T) ((|Complex| . |SemiGroup|) T) ((|Complex| . |Rng|) T) ((|Complex| . |AbelianGroup|) T) ((|Complex| . |AbelianMonoid|) T) ((|Complex| . |SetCategory|) T) ((|Complex| . |CoercibleTo|) 14999) ((|Complex| . |Type|) T) ((|Complex| . |Join|) T) ((|Complex| . |BasicType|) T) ((|Complex| . |AbelianSemiGroup|) T) ((|Complex| . |CancellationAbelianMonoid|) T) ((|Complex| . |CharacteristicNonZero|) 14917) ((|CommutativeOperation| . |CommutativeOperatorCategory|) 14901) ((|CommutativeOperation| . |MappingCategory|) 14875) ((|CommutativeOperation| . |Type|) T) ((|CommutativeOperation| . |BinaryOperatorCategory|) 14859) ((|CommutativeOperation| . |CoercibleTo|) 14823) ((|CommaAst| . |SpadSyntaxCategory|) T) ((|CommaAst| . |HomotopicTo|) 14801) ((|CommaAst| . |CoercibleTo|) 14756) ((|CommaAst| . |CoercibleFrom|) 14734) ((|CommaAst| . |SetCategory|) T) ((|CommaAst| . |Type|) T) ((|CommaAst| . |Join|) T) ((|CommaAst| . |BasicType|) T) ((|CommaAst| . |AbstractSyntaxCategory|) T) ((|Commutator| . |SetCategory|) T) ((|Commutator| . |CoercibleTo|) 14708) ((|Commutator| . |Type|) T) ((|Commutator| . |Join|) T) ((|Commutator| . |BasicType|) T) ((|Color| . |AbelianSemiGroup|) T) ((|Color| . |BasicType|) T) ((|Color| . |Join|) T) ((|Color| . |Type|) T) ((|Color| . |CoercibleTo|) 14682) ((|Color| . |SetCategory|) T) ((|ColonAst| . |SpadSyntaxCategory|) T) ((|ColonAst| . |HomotopicTo|) 14660) ((|ColonAst| . |CoercibleTo|) 14615) ((|ColonAst| . |CoercibleFrom|) 14593) ((|ColonAst| . |SetCategory|) T) ((|ColonAst| . |Type|) T) ((|ColonAst| . |Join|) T) ((|ColonAst| . |BasicType|) T) ((|ColonAst| . |AbstractSyntaxCategory|) T) ((|CollectAst| . |SpadSyntaxCategory|) T) ((|CollectAst| . |HomotopicTo|) 14571) ((|CollectAst| . |CoercibleTo|) 14526) ((|CollectAst| . |CoercibleFrom|) 14504) ((|CollectAst| . |SetCategory|) T) ((|CollectAst| . |Type|) T) ((|CollectAst| . |Join|) T) ((|CollectAst| . |BasicType|) T) ((|CollectAst| . |AbstractSyntaxCategory|) T) ((|CliffordAlgebra| . |Ring|) T) ((|CliffordAlgebra| . |Monoid|) T) ((|CliffordAlgebra| . |SemiRing|) T) ((|CliffordAlgebra| . |SemiGroup|) T) ((|CliffordAlgebra| . |Rng|) T) ((|CliffordAlgebra| . |AbelianGroup|) T) ((|CliffordAlgebra| . |LeftLinearSet|) 14458) ((|CliffordAlgebra| . |AbelianMonoid|) T) ((|CliffordAlgebra| . |SetCategory|) T) ((|CliffordAlgebra| . |CoercibleTo|) 14432) ((|CliffordAlgebra| . |Type|) T) ((|CliffordAlgebra| . |Join|) T) ((|CliffordAlgebra| . |BasicType|) T) ((|CliffordAlgebra| . |AbelianSemiGroup|) T) ((|CliffordAlgebra| . |CancellationAbelianMonoid|) T) ((|CliffordAlgebra| . |LeftModule|) 14406) ((|CliffordAlgebra| . |CoercibleFrom|) 14370) ((|CliffordAlgebra| . |Algebra|) 14354) ((|CliffordAlgebra| . |BiModule|) 14333) ((|CliffordAlgebra| . |RightLinearSet|) 14317) ((|CliffordAlgebra| . |RightModule|) 14301) ((|CliffordAlgebra| . |LinearSet|) 14285) ((|CliffordAlgebra| . |Module|) 14269) ((|CliffordAlgebra| . |VectorSpace|) 14253) ((|Character| . |OrderedFinite|) T) ((|Character| . |OrderedType|) T) ((|Character| . |OrderedSet|) T) ((|Character| . |SetCategory|) T) ((|Character| . |CoercibleTo|) 14227) ((|Character| . |Type|) T) ((|Character| . |Join|) T) ((|Character| . |BasicType|) T) ((|Character| . |Finite|) T) ((|CharacterClass| . |SetCategory|) T) ((|CharacterClass| . |CoercibleTo|) 14201) ((|CharacterClass| . |Type|) T) ((|CharacterClass| . |Join|) T) ((|CharacterClass| . |BasicType|) T) ((|CharacterClass| . |ConvertibleTo|) 14148) ((|CharacterClass| . |FiniteSetAggregate|) 14123) ((|CharacterClass| . |SetAggregate|) 14098) ((|CharacterClass| . |FiniteAggregate|) 14073) ((|CharacterClass| . |Finite|) T) ((|CharacterClass| . |DictionaryOperations|) 14048) ((|CharacterClass| . |Collection|) 14023) ((|CharacterClass| . |HomogeneousAggregate|) 13998) ((|CharacterClass| . |Functorial|) 13973) ((|CharacterClass| . |InnerEvalable|) NIL) ((|CharacterClass| . |Evalable|) NIL) ((|CharacterClass| . |Aggregate|) T) ((|CharacterClass| . |ShallowlyMutableAggregate|) 13948) ((|CharacterClass| . |BagAggregate|) 13923) ((|CharacterClass| . |Dictionary|) 13898) ((|Category| . |CoercibleTo|) 13872) ((|CategoryConstructor| . |ConstructorCategory|) T) ((|CategoryConstructor| . |SetCategory|) T) ((|CategoryConstructor| . |CoercibleTo|) 13822) ((|CategoryConstructor| . |Type|) T) ((|CategoryConstructor| . |Join|) T) ((|CategoryConstructor| . |BasicType|) T) ((|CategoryConstructor| . |OperatorCategory|) 13796) ((|CategoryAst| . |SpadSyntaxCategory|) T) ((|CategoryAst| . |HomotopicTo|) 13774) ((|CategoryAst| . |CoercibleTo|) 13729) ((|CategoryAst| . |CoercibleFrom|) 13707) ((|CategoryAst| . |SetCategory|) T) ((|CategoryAst| . |Type|) T) ((|CategoryAst| . |Join|) T) ((|CategoryAst| . |BasicType|) T) ((|CategoryAst| . |AbstractSyntaxCategory|) T) ((|CaseAst| . |SpadSyntaxCategory|) T) ((|CaseAst| . |HomotopicTo|) 13685) ((|CaseAst| . |CoercibleTo|) 13640) ((|CaseAst| . |CoercibleFrom|) 13618) ((|CaseAst| . |SetCategory|) T) ((|CaseAst| . |Type|) T) ((|CaseAst| . |Join|) T) ((|CaseAst| . |BasicType|) T) ((|CaseAst| . |AbstractSyntaxCategory|) T) ((|CartesianTensor| . |GradedAlgebra|) 13579) ((|CartesianTensor| . |CoercibleFrom|) 13451) ((|CartesianTensor| . |RetractableTo|) 13435) ((|CartesianTensor| . |SetCategory|) T) ((|CartesianTensor| . |CoercibleTo|) 13409) ((|CartesianTensor| . |Type|) T) ((|CartesianTensor| . |Join|) T) ((|CartesianTensor| . |BasicType|) T) ((|CartesianTensor| . |GradedModule|) 13343) ((|CartesianTensor| . |Eltable|) 13315) ((|CardinalNumber| . |OrderedSet|) T) ((|CardinalNumber| . |CoercibleTo|) 13289) ((|CardinalNumber| . |SetCategory|) T) ((|CardinalNumber| . |BasicType|) T) ((|CardinalNumber| . |Join|) T) ((|CardinalNumber| . |Type|) T) ((|CardinalNumber| . |OrderedType|) T) ((|CardinalNumber| . |AbelianMonoid|) T) ((|CardinalNumber| . |AbelianSemiGroup|) T) ((|CardinalNumber| . |Monoid|) T) ((|CardinalNumber| . |SemiGroup|) T) ((|CardinalNumber| . |RetractableTo|) 13255) ((|CardinalNumber| . |CoercibleFrom|) 13221) ((|CapsuleAst| . |SpadSyntaxCategory|) T) ((|CapsuleAst| . |HomotopicTo|) 13199) ((|CapsuleAst| . |CoercibleTo|) 13154) ((|CapsuleAst| . |CoercibleFrom|) 13132) ((|CapsuleAst| . |SetCategory|) T) ((|CapsuleAst| . |Type|) T) ((|CapsuleAst| . |Join|) T) ((|CapsuleAst| . |BasicType|) T) ((|CapsuleAst| . |AbstractSyntaxCategory|) T) ((|ByteOrder| . |SetCategory|) T) ((|ByteOrder| . |CoercibleTo|) 13106) ((|ByteOrder| . |Type|) T) ((|ByteOrder| . |Join|) T) ((|ByteOrder| . |BasicType|) T) ((|ByteBuffer| . |OneDimensionalArrayAggregate|) 13086) ((|ByteBuffer| . |ShallowlyMutableAggregate|) 13066) ((|ByteBuffer| . |FiniteAggregate|) 13046) ((|ByteBuffer| . |Aggregate|) T) ((|ByteBuffer| . |Join|) T) ((|ByteBuffer| . |Type|) T) ((|ByteBuffer| . |BasicType|) T) ((|ByteBuffer| . |CoercibleTo|) 12965) ((|ByteBuffer| . |Evalable|) NIL) ((|ByteBuffer| . |InnerEvalable|) NIL) ((|ByteBuffer| . |Functorial|) 12945) ((|ByteBuffer| . |SetCategory|) T) ((|ByteBuffer| . |HomogeneousAggregate|) 12925) ((|ByteBuffer| . |LinearAggregate|) 12905) ((|ByteBuffer| . |EltableAggregate|) 12873) ((|ByteBuffer| . |Eltable|) 12798) ((|ByteBuffer| . |IndexedAggregate|) 12766) ((|ByteBuffer| . |ConvertibleTo|) NIL) ((|ByteBuffer| . |Collection|) 12746) ((|ByteBuffer| . |OrderedSet|) T) ((|ByteBuffer| . |OrderedType|) T) ((|ByteBuffer| . |FiniteLinearAggregate|) 12726) ((|Byte| . |OrderedFinite|) T) ((|Byte| . |OrderedType|) T) ((|Byte| . |OrderedSet|) T) ((|Byte| . |SetCategory|) T) ((|Byte| . |CoercibleTo|) 12700) ((|Byte| . |Type|) T) ((|Byte| . |Join|) T) ((|Byte| . |BasicType|) T) ((|Byte| . |Finite|) T) ((|Byte| . |Logic|) T) ((|BinaryTree| . |BinaryTreeCategory|) 12684) ((|BinaryTree| . |ShallowlyMutableAggregate|) 12668) ((|BinaryTree| . |FiniteAggregate|) 12652) ((|BinaryTree| . |RecursiveAggregate|) 12636) ((|BinaryTree| . |Aggregate|) T) ((|BinaryTree| . |Join|) T) ((|BinaryTree| . |Type|) T) ((|BinaryTree| . |BasicType|) 12574) ((|BinaryTree| . |CoercibleTo|) 12476) ((|BinaryTree| . |Evalable|) 12400) ((|BinaryTree| . |InnerEvalable|) 12319) ((|BinaryTree| . |Functorial|) 12303) ((|BinaryTree| . |SetCategory|) 12273) ((|BinaryTree| . |HomogeneousAggregate|) 12257) ((|BinaryTree| . |BinaryRecursiveAggregate|) 12241) ((|BinaryTournament| . |BinaryTreeCategory|) 12225) ((|BinaryTournament| . |ShallowlyMutableAggregate|) 12209) ((|BinaryTournament| . |FiniteAggregate|) 12193) ((|BinaryTournament| . |RecursiveAggregate|) 12177) ((|BinaryTournament| . |Aggregate|) T) ((|BinaryTournament| . |Join|) T) ((|BinaryTournament| . |Type|) T) ((|BinaryTournament| . |BasicType|) 12115) ((|BinaryTournament| . |CoercibleTo|) 12017) ((|BinaryTournament| . |Evalable|) 11941) ((|BinaryTournament| . |InnerEvalable|) 11860) ((|BinaryTournament| . |Functorial|) 11844) ((|BinaryTournament| . |SetCategory|) 11814) ((|BinaryTournament| . |HomogeneousAggregate|) 11798) ((|BinaryTournament| . |BinaryRecursiveAggregate|) 11782) ((|BinarySearchTree| . |BinaryTreeCategory|) 11766) ((|BinarySearchTree| . |ShallowlyMutableAggregate|) 11750) ((|BinarySearchTree| . |FiniteAggregate|) 11734) ((|BinarySearchTree| . |RecursiveAggregate|) 11718) ((|BinarySearchTree| . |Aggregate|) T) ((|BinarySearchTree| . |Join|) T) ((|BinarySearchTree| . |Type|) T) ((|BinarySearchTree| . |BasicType|) 11656) ((|BinarySearchTree| . |CoercibleTo|) 11558) ((|BinarySearchTree| . |Evalable|) 11482) ((|BinarySearchTree| . |InnerEvalable|) 11401) ((|BinarySearchTree| . |Functorial|) 11385) ((|BinarySearchTree| . |SetCategory|) 11355) ((|BinarySearchTree| . |HomogeneousAggregate|) 11339) ((|BinarySearchTree| . |BinaryRecursiveAggregate|) 11323) ((|BalancedPAdicRational| . |QuotientFieldCategory|) 11282) ((|BalancedPAdicRational| . |StepThrough|) NIL) ((|BalancedPAdicRational| . |RetractableTo|) 11241) ((|BalancedPAdicRational| . |CoercibleFrom|) 11137) ((|BalancedPAdicRational| . |ConvertibleTo|) NIL) ((|BalancedPAdicRational| . |RealConstant|) NIL) ((|BalancedPAdicRational| . |PolynomialFactorizationExplicit|) NIL) ((|BalancedPAdicRational| . |Patternable|) 11096) ((|BalancedPAdicRational| . |OrderedRing|) NIL) ((|BalancedPAdicRational| . |OrderedCancellationAbelianMonoid|) NIL) ((|BalancedPAdicRational| . |OrderedAbelianSemiGroup|) NIL) ((|BalancedPAdicRational| . |OrderedType|) NIL) ((|BalancedPAdicRational| . |OrderedSet|) NIL) ((|BalancedPAdicRational| . |OrderedAbelianMonoid|) NIL) ((|BalancedPAdicRational| . |OrderedAbelianGroup|) NIL) ((|BalancedPAdicRational| . |OrderedIntegralDomain|) NIL) ((|BalancedPAdicRational| . |PatternMatchable|) NIL) ((|BalancedPAdicRational| . |FullyPatternMatchable|) 11055) ((|BalancedPAdicRational| . |LinearlyExplicitRingOver|) 11014) ((|BalancedPAdicRational| . |LeftModule|) 10930) ((|BalancedPAdicRational| . |FullyLinearlyExplicitRingOver|) 10889) ((|BalancedPAdicRational| . |Eltable|) 10817) ((|BalancedPAdicRational| . |Evalable|) 10750) ((|BalancedPAdicRational| . |InnerEvalable|) 10617) ((|BalancedPAdicRational| . |Functorial|) 10576) ((|BalancedPAdicRational| . |FullyEvalableOver|) 10535) ((|BalancedPAdicRational| . |DivisionRing|) T) ((|BalancedPAdicRational| . |BiModule|) 10435) ((|BalancedPAdicRational| . |RightLinearSet|) 10351) ((|BalancedPAdicRational| . |RightModule|) 10267) ((|BalancedPAdicRational| . |EntireRing|) T) ((|BalancedPAdicRational| . |Module|) 10183) ((|BalancedPAdicRational| . |LinearSet|) 10099) ((|BalancedPAdicRational| . |LeftLinearSet|) 9995) ((|BalancedPAdicRational| . |Algebra|) 9911) ((|BalancedPAdicRational| . |EuclideanDomain|) T) ((|BalancedPAdicRational| . |GcdDomain|) T) ((|BalancedPAdicRational| . |CommutativeRing|) T) ((|BalancedPAdicRational| . |IntegralDomain|) T) ((|BalancedPAdicRational| . |PrincipalIdealDomain|) T) ((|BalancedPAdicRational| . |UniqueFactorizationDomain|) T) ((|BalancedPAdicRational| . |Field|) T) ((|BalancedPAdicRational| . |DifferentialRing|) NIL) ((|BalancedPAdicRational| . |DifferentialDomain|) NIL) ((|BalancedPAdicRational| . |DifferentialSpace|) NIL) ((|BalancedPAdicRational| . |DifferentialSpaceExtension|) 9870) ((|BalancedPAdicRational| . |PartialDifferentialDomain|) NIL) ((|BalancedPAdicRational| . |PartialDifferentialSpace|) NIL) ((|BalancedPAdicRational| . |PartialDifferentialRing|) NIL) ((|BalancedPAdicRational| . |DifferentialExtension|) 9829) ((|BalancedPAdicRational| . |CharacteristicZero|) T) ((|BalancedPAdicRational| . |CharacteristicNonZero|) NIL) ((|BalancedPAdicRational| . |CancellationAbelianMonoid|) T) ((|BalancedPAdicRational| . |AbelianSemiGroup|) T) ((|BalancedPAdicRational| . |BasicType|) T) ((|BalancedPAdicRational| . |Join|) T) ((|BalancedPAdicRational| . |Type|) T) ((|BalancedPAdicRational| . |CoercibleTo|) 9803) ((|BalancedPAdicRational| . |SetCategory|) T) ((|BalancedPAdicRational| . |AbelianMonoid|) T) ((|BalancedPAdicRational| . |AbelianGroup|) T) ((|BalancedPAdicRational| . |Ring|) T) ((|BalancedPAdicRational| . |Monoid|) T) ((|BalancedPAdicRational| . |SemiRing|) T) ((|BalancedPAdicRational| . |SemiGroup|) T) ((|BalancedPAdicRational| . |Rng|) T) ((|BalancedPAdicInteger| . |PAdicIntegerCategory|) 9787) ((|BalancedPAdicInteger| . |PrincipalIdealDomain|) T) ((|BalancedPAdicInteger| . |IntegralDomain|) T) ((|BalancedPAdicInteger| . |EntireRing|) T) ((|BalancedPAdicInteger| . |CommutativeRing|) T) ((|BalancedPAdicInteger| . |CoercibleFrom|) 9754) ((|BalancedPAdicInteger| . |Module|) 9741) ((|BalancedPAdicInteger| . |LinearSet|) 9728) ((|BalancedPAdicInteger| . |RightModule|) 9715) ((|BalancedPAdicInteger| . |RightLinearSet|) 9702) ((|BalancedPAdicInteger| . |BiModule|) 9687) ((|BalancedPAdicInteger| . |Algebra|) 9674) ((|BalancedPAdicInteger| . |GcdDomain|) T) ((|BalancedPAdicInteger| . |EuclideanDomain|) T) ((|BalancedPAdicInteger| . |Ring|) T) ((|BalancedPAdicInteger| . |Monoid|) T) ((|BalancedPAdicInteger| . |SemiRing|) T) ((|BalancedPAdicInteger| . |SemiGroup|) T) ((|BalancedPAdicInteger| . |Rng|) T) ((|BalancedPAdicInteger| . |AbelianGroup|) T) ((|BalancedPAdicInteger| . |LeftLinearSet|) 9641) ((|BalancedPAdicInteger| . |AbelianMonoid|) T) ((|BalancedPAdicInteger| . |SetCategory|) T) ((|BalancedPAdicInteger| . |CoercibleTo|) 9615) ((|BalancedPAdicInteger| . |Type|) T) ((|BalancedPAdicInteger| . |Join|) T) ((|BalancedPAdicInteger| . |BasicType|) T) ((|BalancedPAdicInteger| . |AbelianSemiGroup|) T) ((|BalancedPAdicInteger| . |CancellationAbelianMonoid|) T) ((|BalancedPAdicInteger| . |LeftModule|) 9602) ((|BalancedPAdicInteger| . |CharacteristicZero|) T) ((|BasicOperator| . |OrderedSet|) T) ((|BasicOperator| . |CoercibleTo|) 9576) ((|BasicOperator| . |SetCategory|) T) ((|BasicOperator| . |BasicType|) T) ((|BasicOperator| . |Join|) T) ((|BasicOperator| . |Type|) T) ((|BasicOperator| . |OrderedType|) T) ((|BasicOperator| . |OperatorCategory|) 9554) ((|Boolean| . |OrderedFinite|) T) ((|Boolean| . |OrderedType|) T) ((|Boolean| . |OrderedSet|) T) ((|Boolean| . |SetCategory|) T) ((|Boolean| . |CoercibleTo|) 9528) ((|Boolean| . |Type|) T) ((|Boolean| . |Join|) T) ((|Boolean| . |BasicType|) T) ((|Boolean| . |Finite|) T) ((|Boolean| . |PropositionalLogic|) T) ((|Boolean| . |Logic|) T) ((|Boolean| . |BooleanLogic|) T) ((|Boolean| . |ConvertibleTo|) 9503) ((|Bits| . |BitAggregate|) T) ((|Bits| . |FiniteLinearAggregate|) 9480) ((|Bits| . |OrderedType|) T) ((|Bits| . |OrderedSet|) T) ((|Bits| . |Collection|) 9457) ((|Bits| . |ConvertibleTo|) 9432) ((|Bits| . |Eltable|) 9354) ((|Bits| . |IndexedAggregate|) 9319) ((|Bits| . |EltableAggregate|) 9284) ((|Bits| . |LinearAggregate|) 9261) ((|Bits| . |HomogeneousAggregate|) 9238) ((|Bits| . |SetCategory|) T) ((|Bits| . |Functorial|) 9215) ((|Bits| . |InnerEvalable|) NIL) ((|Bits| . |Evalable|) NIL) ((|Bits| . |CoercibleTo|) 9189) ((|Bits| . |BasicType|) T) ((|Bits| . |Aggregate|) T) ((|Bits| . |FiniteAggregate|) 9166) ((|Bits| . |ShallowlyMutableAggregate|) 9143) ((|Bits| . |OneDimensionalArrayAggregate|) 9120) ((|Bits| . |Logic|) T) ((|Bits| . |Join|) T) ((|Bits| . |Type|) T) ((|Bits| . |BooleanLogic|) T) ((|BinaryOperation| . |BinaryOperatorCategory|) 9104) ((|BinaryOperation| . |Type|) T) ((|BinaryOperation| . |MappingCategory|) 9078) ((|BinaryOperation| . |SetCategory|) T) ((|BinaryOperation| . |CoercibleTo|) 9052) ((|BinaryOperation| . |Join|) T) ((|BinaryOperation| . |BasicType|) T) ((|Binding| . |CoercibleTo|) 9026) ((|BinaryExpansion| . |QuotientFieldCategory|) 9003) ((|BinaryExpansion| . |StepThrough|) T) ((|BinaryExpansion| . |CoercibleFrom|) 8937) ((|BinaryExpansion| . |RetractableTo|) 8881) ((|BinaryExpansion| . |ConvertibleTo|) 8782) ((|BinaryExpansion| . |RealConstant|) T) ((|BinaryExpansion| . |PolynomialFactorizationExplicit|) NIL) ((|BinaryExpansion| . |Patternable|) 8759) ((|BinaryExpansion| . |OrderedRing|) T) ((|BinaryExpansion| . |OrderedCancellationAbelianMonoid|) T) ((|BinaryExpansion| . |OrderedAbelianSemiGroup|) T) ((|BinaryExpansion| . |OrderedType|) T) ((|BinaryExpansion| . |OrderedSet|) T) ((|BinaryExpansion| . |OrderedAbelianMonoid|) T) ((|BinaryExpansion| . |OrderedAbelianGroup|) T) ((|BinaryExpansion| . |OrderedIntegralDomain|) T) ((|BinaryExpansion| . |PatternMatchable|) 8736) ((|BinaryExpansion| . |FullyPatternMatchable|) 8713) ((|BinaryExpansion| . |LinearlyExplicitRingOver|) 8690) ((|BinaryExpansion| . |FullyLinearlyExplicitRingOver|) 8667) ((|BinaryExpansion| . |Eltable|) NIL) ((|BinaryExpansion| . |Evalable|) NIL) ((|BinaryExpansion| . |InnerEvalable|) NIL) ((|BinaryExpansion| . |Functorial|) 8644) ((|BinaryExpansion| . |FullyEvalableOver|) 8621) ((|BinaryExpansion| . |DivisionRing|) T) ((|BinaryExpansion| . |BiModule|) 8539) ((|BinaryExpansion| . |RightLinearSet|) 8473) ((|BinaryExpansion| . |RightModule|) 8407) ((|BinaryExpansion| . |EntireRing|) T) ((|BinaryExpansion| . |Module|) 8341) ((|BinaryExpansion| . |LinearSet|) 8275) ((|BinaryExpansion| . |LeftModule|) 8209) ((|BinaryExpansion| . |LeftLinearSet|) 8143) ((|BinaryExpansion| . |Algebra|) 8077) ((|BinaryExpansion| . |EuclideanDomain|) T) ((|BinaryExpansion| . |GcdDomain|) T) ((|BinaryExpansion| . |CommutativeRing|) T) ((|BinaryExpansion| . |IntegralDomain|) T) ((|BinaryExpansion| . |PrincipalIdealDomain|) T) ((|BinaryExpansion| . |UniqueFactorizationDomain|) T) ((|BinaryExpansion| . |Field|) T) ((|BinaryExpansion| . |DifferentialRing|) T) ((|BinaryExpansion| . |DifferentialDomain|) 8064) ((|BinaryExpansion| . |DifferentialSpace|) T) ((|BinaryExpansion| . |DifferentialSpaceExtension|) 8041) ((|BinaryExpansion| . |PartialDifferentialDomain|) NIL) ((|BinaryExpansion| . |PartialDifferentialSpace|) NIL) ((|BinaryExpansion| . |PartialDifferentialRing|) NIL) ((|BinaryExpansion| . |DifferentialExtension|) 8018) ((|BinaryExpansion| . |CharacteristicZero|) T) ((|BinaryExpansion| . |CharacteristicNonZero|) NIL) ((|BinaryExpansion| . |CancellationAbelianMonoid|) T) ((|BinaryExpansion| . |AbelianSemiGroup|) T) ((|BinaryExpansion| . |BasicType|) T) ((|BinaryExpansion| . |Join|) T) ((|BinaryExpansion| . |Type|) T) ((|BinaryExpansion| . |CoercibleTo|) 7930) ((|BinaryExpansion| . |SetCategory|) T) ((|BinaryExpansion| . |AbelianMonoid|) T) ((|BinaryExpansion| . |AbelianGroup|) T) ((|BinaryExpansion| . |Ring|) T) ((|BinaryExpansion| . |Monoid|) T) ((|BinaryExpansion| . |SemiRing|) T) ((|BinaryExpansion| . |SemiGroup|) T) ((|BinaryExpansion| . |Rng|) T) ((|BalancedBinaryTree| . |BinaryTreeCategory|) 7914) ((|BalancedBinaryTree| . |ShallowlyMutableAggregate|) 7898) ((|BalancedBinaryTree| . |FiniteAggregate|) 7882) ((|BalancedBinaryTree| . |RecursiveAggregate|) 7866) ((|BalancedBinaryTree| . |Aggregate|) T) ((|BalancedBinaryTree| . |Join|) T) ((|BalancedBinaryTree| . |Type|) T) ((|BalancedBinaryTree| . |BasicType|) 7804) ((|BalancedBinaryTree| . |CoercibleTo|) 7706) ((|BalancedBinaryTree| . |Evalable|) 7630) ((|BalancedBinaryTree| . |InnerEvalable|) 7549) ((|BalancedBinaryTree| . |Functorial|) 7533) ((|BalancedBinaryTree| . |SetCategory|) 7503) ((|BalancedBinaryTree| . |HomogeneousAggregate|) 7487) ((|BalancedBinaryTree| . |BinaryRecursiveAggregate|) 7471) ((|Automorphism| . |Group|) T) ((|Automorphism| . |SemiGroup|) T) ((|Automorphism| . |BasicType|) T) ((|Automorphism| . |Join|) T) ((|Automorphism| . |Type|) T) ((|Automorphism| . |CoercibleTo|) 7445) ((|Automorphism| . |SetCategory|) T) ((|Automorphism| . |Monoid|) T) ((|Automorphism| . |Eltable|) 7424) ((|AttributeAst| . |SpadSyntaxCategory|) T) ((|AttributeAst| . |HomotopicTo|) 7402) ((|AttributeAst| . |CoercibleTo|) 7357) ((|AttributeAst| . |CoercibleFrom|) 7335) ((|AttributeAst| . |SetCategory|) T) ((|AttributeAst| . |Type|) T) ((|AttributeAst| . |Join|) T) ((|AttributeAst| . |BasicType|) T) ((|AttributeAst| . |AbstractSyntaxCategory|) T) ((|ArrayStack| . |StackAggregate|) 7319) ((|ArrayStack| . |FiniteAggregate|) 7303) ((|ArrayStack| . |HomogeneousAggregate|) 7287) ((|ArrayStack| . |SetCategory|) 7257) ((|ArrayStack| . |Functorial|) 7241) ((|ArrayStack| . |InnerEvalable|) 7160) ((|ArrayStack| . |Evalable|) 7084) ((|ArrayStack| . |CoercibleTo|) 6986) ((|ArrayStack| . |BasicType|) 6924) ((|ArrayStack| . |Type|) T) ((|ArrayStack| . |Join|) T) ((|ArrayStack| . |Aggregate|) T) ((|ArrayStack| . |ShallowlyMutableAggregate|) 6908) ((|ArrayStack| . |BagAggregate|) 6892) ((|TwoDimensionalArray| . |TwoDimensionalArrayCategory|) 6840) ((|TwoDimensionalArray| . |ShallowlyMutableAggregate|) 6824) ((|TwoDimensionalArray| . |HomogeneousAggregate|) 6808) ((|TwoDimensionalArray| . |SetCategory|) 6778) ((|TwoDimensionalArray| . |Functorial|) 6762) ((|TwoDimensionalArray| . |InnerEvalable|) 6681) ((|TwoDimensionalArray| . |Evalable|) 6605) ((|TwoDimensionalArray| . |CoercibleTo|) 6507) ((|TwoDimensionalArray| . |BasicType|) 6445) ((|TwoDimensionalArray| . |Type|) T) ((|TwoDimensionalArray| . |Join|) T) ((|TwoDimensionalArray| . |Aggregate|) T) ((|TwoDimensionalArray| . |FiniteAggregate|) 6429) ((|OneDimensionalArray| . |OneDimensionalArrayAggregate|) 6413) ((|OneDimensionalArray| . |ShallowlyMutableAggregate|) 6397) ((|OneDimensionalArray| . |FiniteAggregate|) 6381) ((|OneDimensionalArray| . |Aggregate|) T) ((|OneDimensionalArray| . |Join|) T) ((|OneDimensionalArray| . |Type|) T) ((|OneDimensionalArray| . |BasicType|) 6291) ((|OneDimensionalArray| . |CoercibleTo|) 6165) ((|OneDimensionalArray| . |Evalable|) 6089) ((|OneDimensionalArray| . |InnerEvalable|) 6008) ((|OneDimensionalArray| . |Functorial|) 5992) ((|OneDimensionalArray| . |SetCategory|) 5929) ((|OneDimensionalArray| . |HomogeneousAggregate|) 5913) ((|OneDimensionalArray| . |LinearAggregate|) 5897) ((|OneDimensionalArray| . |EltableAggregate|) 5869) ((|OneDimensionalArray| . |Eltable|) 5798) ((|OneDimensionalArray| . |IndexedAggregate|) 5770) ((|OneDimensionalArray| . |ConvertibleTo|) 5706) ((|OneDimensionalArray| . |Collection|) 5690) ((|OneDimensionalArray| . |OrderedSet|) 5661) ((|OneDimensionalArray| . |OrderedType|) 5632) ((|OneDimensionalArray| . |FiniteLinearAggregate|) 5616) ((|Arity| . |SetCategory|) T) ((|Arity| . |CoercibleTo|) 5590) ((|Arity| . |Type|) T) ((|Arity| . |Join|) T) ((|Arity| . |BasicType|) T) ((|Arity| . |RetractableTo|) 5556) ((|Arity| . |CoercibleFrom|) 5522) ((|Any| . |SetCategory|) T) ((|Any| . |CoercibleTo|) 5496) ((|Any| . |Type|) T) ((|Any| . |Join|) T) ((|Any| . |BasicType|) T) ((|AntiSymm| . |LeftAlgebra|) 5480) ((|AntiSymm| . |CoercibleFrom|) 5444) ((|AntiSymm| . |LeftModule|) 5418) ((|AntiSymm| . |LeftLinearSet|) 5372) ((|AntiSymm| . |Rng|) T) ((|AntiSymm| . |SemiGroup|) T) ((|AntiSymm| . |SemiRing|) T) ((|AntiSymm| . |Monoid|) T) ((|AntiSymm| . |Ring|) T) ((|AntiSymm| . |AbelianGroup|) T) ((|AntiSymm| . |AbelianMonoid|) T) ((|AntiSymm| . |SetCategory|) T) ((|AntiSymm| . |CoercibleTo|) 5346) ((|AntiSymm| . |Type|) T) ((|AntiSymm| . |Join|) T) ((|AntiSymm| . |BasicType|) T) ((|AntiSymm| . |AbelianSemiGroup|) T) ((|AntiSymm| . |CancellationAbelianMonoid|) T) ((|AntiSymm| . |RetractableTo|) 5330) ((|AntiSymm| . |Functorial|) 5314) ((|AnonymousFunction| . |SetCategory|) T) ((|AnonymousFunction| . |CoercibleTo|) 5288) ((|AnonymousFunction| . |Type|) T) ((|AnonymousFunction| . |Join|) T) ((|AnonymousFunction| . |BasicType|) T) ((|AlgebraicNumber| . |ExpressionSpace|) T) ((|AlgebraicNumber| . |BasicType|) T) ((|AlgebraicNumber| . |Join|) T) ((|AlgebraicNumber| . |Type|) T) ((|AlgebraicNumber| . |CoercibleTo|) 5262) ((|AlgebraicNumber| . |SetCategory|) T) ((|AlgebraicNumber| . |CoercibleFrom|) 5109) ((|AlgebraicNumber| . |RetractableTo|) 5037) ((|AlgebraicNumber| . |InnerEvalable|) 4999) ((|AlgebraicNumber| . |Evalable|) 4986) ((|AlgebraicNumber| . |AlgebraicallyClosedField|) T) ((|AlgebraicNumber| . |RadicalCategory|) T) ((|AlgebraicNumber| . |DivisionRing|) T) ((|AlgebraicNumber| . |BiModule|) 4931) ((|AlgebraicNumber| . |RightLinearSet|) 4885) ((|AlgebraicNumber| . |RightModule|) 4839) ((|AlgebraicNumber| . |EntireRing|) T) ((|AlgebraicNumber| . |Module|) 4793) ((|AlgebraicNumber| . |LinearSet|) 4747) ((|AlgebraicNumber| . |LeftModule|) 4681) ((|AlgebraicNumber| . |LeftLinearSet|) 4615) ((|AlgebraicNumber| . |CancellationAbelianMonoid|) T) ((|AlgebraicNumber| . |AbelianSemiGroup|) T) ((|AlgebraicNumber| . |AbelianMonoid|) T) ((|AlgebraicNumber| . |AbelianGroup|) T) ((|AlgebraicNumber| . |Ring|) T) ((|AlgebraicNumber| . |Monoid|) T) ((|AlgebraicNumber| . |SemiRing|) T) ((|AlgebraicNumber| . |SemiGroup|) T) ((|AlgebraicNumber| . |Rng|) T) ((|AlgebraicNumber| . |Algebra|) 4569) ((|AlgebraicNumber| . |EuclideanDomain|) T) ((|AlgebraicNumber| . |GcdDomain|) T) ((|AlgebraicNumber| . |CommutativeRing|) T) ((|AlgebraicNumber| . |IntegralDomain|) T) ((|AlgebraicNumber| . |PrincipalIdealDomain|) T) ((|AlgebraicNumber| . |UniqueFactorizationDomain|) T) ((|AlgebraicNumber| . |Field|) T) ((|AlgebraicNumber| . |LinearlyExplicitRingOver|) 4518) ((|AlgebraicNumber| . |RealConstant|) T) ((|AlgebraicNumber| . |ConvertibleTo|) 4443) ((|AlgebraicNumber| . |CharacteristicZero|) T) ((|AlgebraicNumber| . |DifferentialRing|) T) ((|AlgebraicNumber| . |DifferentialDomain|) 4430) ((|AlgebraicNumber| . |DifferentialSpace|) T) ((|AssociationList| . |AssociationListAggregate|) 4409) ((|AssociationList| . |KeyedDictionary|) 4388) ((|AssociationList| . |EltableAggregate|) 4300) ((|AssociationList| . |Eltable|) 4169) ((|AssociationList| . |HomogeneousAggregate|) 4098) ((|AssociationList| . |Functorial|) 4027) ((|AssociationList| . |InnerEvalable|) 3775) ((|AssociationList| . |Evalable|) 3535) ((|AssociationList| . |IndexedAggregate|) 3447) ((|AssociationList| . |DictionaryOperations|) 3389) ((|AssociationList| . |BagAggregate|) 3331) ((|AssociationList| . |Dictionary|) 3273) ((|AssociationList| . |TableAggregate|) 3252) ((|AssociationList| . |ShallowlyMutableAggregate|) 3181) ((|AssociationList| . |ExtensibleLinearAggregate|) 3123) ((|AssociationList| . |Collection|) 3065) ((|AssociationList| . |Aggregate|) T) ((|AssociationList| . |Join|) T) ((|AssociationList| . |Type|) T) ((|AssociationList| . |BasicType|) T) ((|AssociationList| . |CoercibleTo|) 3039) ((|AssociationList| . |SetCategory|) T) ((|AssociationList| . |ConvertibleTo|) NIL) ((|AssociationList| . |LinearAggregate|) 2981) ((|AssociationList| . |FiniteLinearAggregate|) 2923) ((|AssociationList| . |OrderedType|) NIL) ((|AssociationList| . |OrderedSet|) NIL) ((|AssociationList| . |FiniteAggregate|) 2865) ((|AssociationList| . |StreamAggregate|) 2807) ((|AssociationList| . |RecursiveAggregate|) 2749) ((|AssociationList| . |UnaryRecursiveAggregate|) 2691) ((|AssociationList| . |ListAggregate|) 2633) ((|AlgebraGivenByStructuralConstants| . |FramedNonAssociativeAlgebra|) 2617) ((|AlgebraGivenByStructuralConstants| . |NonAssociativeAlgebra|) 2601) ((|AlgebraGivenByStructuralConstants| . |Monad|) T) ((|AlgebraGivenByStructuralConstants| . |NonAssociativeRng|) T) ((|AlgebraGivenByStructuralConstants| . |BiModule|) 2580) ((|AlgebraGivenByStructuralConstants| . |RightLinearSet|) 2564) ((|AlgebraGivenByStructuralConstants| . |RightModule|) 2548) ((|AlgebraGivenByStructuralConstants| . |AbelianGroup|) T) ((|AlgebraGivenByStructuralConstants| . |LeftLinearSet|) 2477) ((|AlgebraGivenByStructuralConstants| . |AbelianMonoid|) T) ((|AlgebraGivenByStructuralConstants| . |SetCategory|) T) ((|AlgebraGivenByStructuralConstants| . |CoercibleTo|) 2451) ((|AlgebraGivenByStructuralConstants| . |BasicType|) T) ((|AlgebraGivenByStructuralConstants| . |AbelianSemiGroup|) T) ((|AlgebraGivenByStructuralConstants| . |CancellationAbelianMonoid|) T) ((|AlgebraGivenByStructuralConstants| . |LeftModule|) 2400) ((|AlgebraGivenByStructuralConstants| . |LinearSet|) 2384) ((|AlgebraGivenByStructuralConstants| . |Module|) 2368) ((|AlgebraGivenByStructuralConstants| . |FiniteRankNonAssociativeAlgebra|) 2352) ((|AlgebraGivenByStructuralConstants| . |Type|) T) ((|AlgebraGivenByStructuralConstants| . |Join|) T) ((|AlgebraGivenByStructuralConstants| . |Eltable|) 2324) ((|AlgebraicFunctionField| . |FunctionFieldCategory|) 2298) ((|AlgebraicFunctionField| . |CommutativeRing|) T) ((|AlgebraicFunctionField| . |CoercibleFrom|) 2206) ((|AlgebraicFunctionField| . |Rng|) T) ((|AlgebraicFunctionField| . |SemiGroup|) T) ((|AlgebraicFunctionField| . |SemiRing|) T) ((|AlgebraicFunctionField| . |Monoid|) T) ((|AlgebraicFunctionField| . |Ring|) T) ((|AlgebraicFunctionField| . |LeftModule|) 2064) ((|AlgebraicFunctionField| . |LeftLinearSet|) 1972) ((|AlgebraicFunctionField| . |CancellationAbelianMonoid|) T) ((|AlgebraicFunctionField| . |AbelianSemiGroup|) T) ((|AlgebraicFunctionField| . |BasicType|) T) ((|AlgebraicFunctionField| . |Join|) T) ((|AlgebraicFunctionField| . |Type|) T) ((|AlgebraicFunctionField| . |CoercibleTo|) 1946) ((|AlgebraicFunctionField| . |SetCategory|) T) ((|AlgebraicFunctionField| . |AbelianMonoid|) T) ((|AlgebraicFunctionField| . |AbelianGroup|) T) ((|AlgebraicFunctionField| . |RightModule|) 1874) ((|AlgebraicFunctionField| . |RightLinearSet|) 1802) ((|AlgebraicFunctionField| . |BiModule|) 1714) ((|AlgebraicFunctionField| . |ConvertibleTo|) 1698) ((|AlgebraicFunctionField| . |DifferentialExtension|) 1669) ((|AlgebraicFunctionField| . |PartialDifferentialRing|) 1588) ((|AlgebraicFunctionField| . |PartialDifferentialSpace|) 1436) ((|AlgebraicFunctionField| . |PartialDifferentialDomain|) 1282) ((|AlgebraicFunctionField| . |DifferentialSpaceExtension|) 1253) ((|AlgebraicFunctionField| . |DifferentialSpace|) 1152) ((|AlgebraicFunctionField| . |DifferentialDomain|) 1045) ((|AlgebraicFunctionField| . |DifferentialRing|) 997) ((|AlgebraicFunctionField| . |Field|) T) ((|AlgebraicFunctionField| . |UniqueFactorizationDomain|) T) ((|AlgebraicFunctionField| . |PrincipalIdealDomain|) T) ((|AlgebraicFunctionField| . |IntegralDomain|) T) ((|AlgebraicFunctionField| . |Module|) 925) ((|AlgebraicFunctionField| . |LinearSet|) 853) ((|AlgebraicFunctionField| . |Algebra|) 781) ((|AlgebraicFunctionField| . |GcdDomain|) T) ((|AlgebraicFunctionField| . |EuclideanDomain|) T) ((|AlgebraicFunctionField| . |EntireRing|) T) ((|AlgebraicFunctionField| . |DivisionRing|) T) ((|AlgebraicFunctionField| . |Finite|) NIL) ((|AlgebraicFunctionField| . |FiniteFieldCategory|) NIL) ((|AlgebraicFunctionField| . |StepThrough|) NIL) ((|AlgebraicFunctionField| . |CharacteristicNonZero|) 728) ((|AlgebraicFunctionField| . |FieldOfPrimeCharacteristic|) NIL) ((|AlgebraicFunctionField| . |FramedAlgebra|) 694) ((|AlgebraicFunctionField| . |CharacteristicZero|) 644) ((|AlgebraicFunctionField| . |FiniteRankAlgebra|) 610) ((|AlgebraicFunctionField| . |FullyLinearlyExplicitRingOver|) 581) ((|AlgebraicFunctionField| . |LinearlyExplicitRingOver|) 482) ((|AlgebraicFunctionField| . |FullyRetractableTo|) 453) ((|AlgebraicFunctionField| . |RetractableTo|) 283) ((|AlgebraicFunctionField| . |MonogenicAlgebra|) 249) ((|AddAst| . |SpadSyntaxCategory|) T) ((|AddAst| . |HomotopicTo|) 227) ((|AddAst| . |CoercibleTo|) 182) ((|AddAst| . |CoercibleFrom|) 160) ((|AddAst| . |SetCategory|) T) ((|AddAst| . |Type|) T) ((|AddAst| . |Join|) T) ((|AddAst| . |BasicType|) T) ((|AddAst| . |AbstractSyntaxCategory|) T) ((|PlaneAlgebraicCurvePlot| . |PlottablePlaneCurveCategory|) T) ((|PlaneAlgebraicCurvePlot| . |CoercibleTo|) 134) ((|Enumeration| . |EnumerationCategory|) T) ((|Enumeration| . |CoercibleTo|) 108) ((|Enumeration| . |SetCategory|) T) ((|Enumeration| . |BasicType|) T) ((|Enumeration| . |Type|) T) ((|Record| . |RecordCategory|) T) ((|Record| . |CoercibleTo|) 82) ((|Record| . |SetCategory|) T) ((|Record| . |BasicType|) T) ((|Record| . |Type|) T) ((|Union| . |UnionCategory|) T) ((|Union| . |CoercibleTo|) 56) ((|Union| . |SetCategory|) T) ((|Union| . |BasicType|) T) ((|Union| . |Type|) T) ((|Mapping| . |SetCategory|) T) ((|Mapping| . |CoercibleTo|) 30) ((|Mapping| . |Type|) T) ((|Mapping| . |Join|) T) ((|Mapping| . |BasicType|) T))